Lines Matching refs:test_kind

39     public enum test_kind {  enum in Context
46 public Context(test_kind k, params object[] args) in Context()
54 if (kind == test_kind.NO_FACTORY) in getServiceManager()
61 if (kind == test_kind.NORMAL) in getValueByName()
69 else if (kind == test_kind.CREATION_FAILED) in getValueByName()
78 public Factory(Context.test_kind k, params object[] args) { in Factory()
80 if (k == Context.test_kind.TEST_EXCEPTION) in Factory()
88 case test_kind.NORMAL: in createInstanceWithArgumentsAndContext()
90 case test_kind.CREATION_FAILED : in createInstanceWithArgumentsAndContext()
92 case test_kind.TEST_EXCEPTION: in createInstanceWithArgumentsAndContext()
102 case test_kind.NORMAL: in createInstanceWithContext()
104 case test_kind.CREATION_FAILED: in createInstanceWithContext()
106 case test_kind.TEST_EXCEPTION: in createInstanceWithContext()
118 test_kind kind2;
123 test_kind kind;
471 S1.create1(new Context(Context.test_kind.TEST_EXCEPTION, excRuntime)); in testS1()
479 Context c = new Context(Context.test_kind.TEST_EXCEPTION, excException); in testS1()
495 S1.create2(new Context(Context.test_kind.TEST_EXCEPTION, excRuntime)); in testS1()
504 S1.create2(new Context(Context.test_kind.TEST_EXCEPTION, excIllegalAccess)); in testS1()
513 S1.create2(new Context(Context.test_kind.TEST_EXCEPTION, excException)); in testS1()
526 S1.create3(new Context(Context.test_kind.TEST_EXCEPTION, excDeployment), in testS1()
536 S1.create3(new Context(Context.test_kind.TEST_EXCEPTION, excIllegalAccess), in testS1()
545 c = new Context(Context.test_kind.TEST_EXCEPTION, excInvalidListener); in testS1()
558 S1.create2(new Context(Context.test_kind.NO_FACTORY)); in testS1()
569 S1.create2(new Context(Context.test_kind.CREATION_FAILED)); in testS1()
579 c = new Context(Context.test_kind.NORMAL); in testS1()
809 c = new Context(Context.test_kind.NORMAL); in testS1()
1025 Context c = new Context(Context.test_kind.NORMAL); in testSingletons()
1035 c = new Context(Context.test_kind.CREATION_FAILED); in testSingletons()
1211 Context c = new Context(Context.test_kind.NORMAL); in testInterface()