/external/guava/android/guava-testlib/src/com/google/common/collect/testing/ |
D | AbstractTester.java | 38 private Runnable tearDown; field in AbstractTester 50 public void tearDown() throws Exception { in tearDown() method in AbstractTester 51 if (tearDown != null) { in tearDown() 52 tearDown.run(); in tearDown() 57 public final void init(G subjectGenerator, String suiteName, Runnable setUp, Runnable tearDown) { in init() argument 61 this.tearDown = tearDown; in init()
|
D | FeatureSpecificTestSuiteBuilder.java | 68 private Runnable tearDown; field in FeatureSpecificTestSuiteBuilder 88 public B withTearDown(Runnable tearDown) { in withTearDown() argument 89 this.tearDown = tearDown; in withTearDown() 94 return tearDown; in getTearDown() 280 tester.init(subjectGenerator, name, setUp, tearDown); in makeSuiteForTesterClass()
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
D | AbstractTester.java | 38 private Runnable tearDown; field in AbstractTester 50 public void tearDown() throws Exception { in tearDown() method in AbstractTester 51 if (tearDown != null) { in tearDown() 52 tearDown.run(); in tearDown() 57 public final void init(G subjectGenerator, String suiteName, Runnable setUp, Runnable tearDown) { in init() argument 61 this.tearDown = tearDown; in init()
|
D | FeatureSpecificTestSuiteBuilder.java | 68 private Runnable tearDown; field in FeatureSpecificTestSuiteBuilder 88 public B withTearDown(Runnable tearDown) { in withTearDown() argument 89 this.tearDown = tearDown; in withTearDown() 94 return tearDown; in getTearDown() 280 tester.init(subjectGenerator, name, setUp, tearDown); in makeSuiteForTesterClass()
|
/external/guava/android/guava-testlib/test/com/google/common/testing/ |
D | TearDownStackTest.java | 33 final SimpleTearDown tearDown = new SimpleTearDown(); in testSingleTearDown() local 34 stack.addTearDown(tearDown); in testSingleTearDown() 36 assertEquals(false, tearDown.ran); in testSingleTearDown() 40 assertEquals("tearDown should have run", true, tearDown.ran); in testSingleTearDown() 102 tearDown(); in runBare() 107 protected void tearDown() { in tearDown() method in TearDownStackTest 118 public void tearDown() throws Exception { in buildTearDownStack() 140 public void tearDown() throws Exception { in tearDown() method in TearDownStackTest.ThrowingTearDown 158 public void tearDown() throws Exception { in tearDown() method in TearDownStackTest.SimpleTearDown
|
D | TestLogHandlerTest.java | 48 public void tearDown() throws Exception { in setUp() 81 tearDown(); in runBare() 86 protected void tearDown() { in tearDown() method in TestLogHandlerTest
|
/external/guava/guava-testlib/test/com/google/common/testing/ |
D | TearDownStackTest.java | 33 final SimpleTearDown tearDown = new SimpleTearDown(); in testSingleTearDown() local 34 stack.addTearDown(tearDown); in testSingleTearDown() 36 assertEquals(false, tearDown.ran); in testSingleTearDown() 40 assertEquals("tearDown should have run", true, tearDown.ran); in testSingleTearDown() 102 tearDown(); in runBare() 107 protected void tearDown() { in tearDown() method in TearDownStackTest 118 public void tearDown() throws Exception { in buildTearDownStack() 140 public void tearDown() throws Exception { in tearDown() method in TearDownStackTest.ThrowingTearDown 158 public void tearDown() throws Exception { in tearDown() method in TearDownStackTest.SimpleTearDown
|
D | TestLogHandlerTest.java | 48 public void tearDown() throws Exception { in setUp() 81 tearDown(); in runBare() 86 protected void tearDown() { in tearDown() method in TestLogHandlerTest
|
/external/python/cpython3/Lib/unittest/test/ |
D | test_functiontestcase.py | 33 def tearDown(): function 37 unittest.FunctionTestCase(test, setUp, tearDown).run(result) 58 def tearDown(): function 63 unittest.FunctionTestCase(test, setUp, tearDown).run(result) 84 def tearDown(): function 89 unittest.FunctionTestCase(test, setUp, tearDown).run(result) 109 def tearDown(): function 115 unittest.FunctionTestCase(test, setUp, tearDown).run(result)
|
/external/llvm-project/lldb/third_party/Python/module/unittest2/unittest2/test/ |
D | test_functiontestcase.py | 34 def tearDown(): function 38 unittest2.FunctionTestCase(test, setUp, tearDown).run(result) 59 def tearDown(): function 64 unittest2.FunctionTestCase(test, setUp, tearDown).run(result) 85 def tearDown(): function 90 unittest2.FunctionTestCase(test, setUp, tearDown).run(result) 110 def tearDown(): function 116 unittest2.FunctionTestCase(test, setUp, tearDown).run(result)
|
/external/python/cpython2/Lib/unittest/test/ |
D | test_functiontestcase.py | 33 def tearDown(): function 37 unittest.FunctionTestCase(test, setUp, tearDown).run(result) 58 def tearDown(): function 63 unittest.FunctionTestCase(test, setUp, tearDown).run(result) 84 def tearDown(): function 89 unittest.FunctionTestCase(test, setUp, tearDown).run(result) 109 def tearDown(): function 115 unittest.FunctionTestCase(test, setUp, tearDown).run(result)
|
/external/guava/android/guava-testlib/src/com/google/common/testing/ |
D | TearDownStack.java | 58 public final void addTearDown(TearDown tearDown) { in addTearDown() argument 60 stack.addFirst(checkNotNull(tearDown)); in addTearDown() 72 for (TearDown tearDown : stackCopy) { in runTearDown() 74 tearDown.tearDown(); in runTearDown()
|
/external/guava/guava-testlib/src/com/google/common/testing/ |
D | TearDownStack.java | 58 public final void addTearDown(TearDown tearDown) { in addTearDown() argument 60 stack.addFirst(checkNotNull(tearDown)); in addTearDown() 72 for (TearDown tearDown : stackCopy) { in runTearDown() 74 tearDown.tearDown(); in runTearDown()
|
/external/guava/android/guava-tests/test/com/google/common/io/ |
D | SourceSinkFactories.java | 115 public void tearDown() throws IOException { in asByteSourceFactory() method in SourceSinkFactories 116 factory.tearDown(); in asByteSourceFactory() 135 public void tearDown() throws IOException { 136 factory.tearDown(); 165 public void tearDown() throws IOException { 166 factory.tearDown(); 189 public void tearDown() throws IOException { 190 factory.tearDown(); 208 public void tearDown() throws IOException {} 224 public void tearDown() throws IOException {} [all …]
|
/external/guava/guava-tests/test/com/google/common/io/ |
D | SourceSinkFactories.java | 150 public void tearDown() throws IOException { in asByteSourceFactory() method in SourceSinkFactories 151 factory.tearDown(); in asByteSourceFactory() 170 public void tearDown() throws IOException { 171 factory.tearDown(); 200 public void tearDown() throws IOException { 201 factory.tearDown(); 224 public void tearDown() throws IOException { 225 factory.tearDown(); 243 public void tearDown() throws IOException {} 259 public void tearDown() throws IOException {} [all …]
|
/external/python/cpython2/Lib/distutils/tests/ |
D | support.py | 36 def tearDown(self): member in LoggingSilencer 39 super(LoggingSilencer, self).tearDown() 69 def tearDown(self): member in TempdirManager 73 super(TempdirManager, self).tearDown() 136 def tearDown(self): member in EnvironGuard 145 super(EnvironGuard, self).tearDown()
|
/external/python/cpython3/Lib/distutils/tests/ |
D | support.py | 28 def tearDown(self): member in LoggingSilencer 31 super().tearDown() 60 def tearDown(self): member in TempdirManager 64 super().tearDown() 127 def tearDown(self): member in EnvironGuard 136 super(EnvironGuard, self).tearDown()
|
/external/bcc/tests/python/ |
D | test_probe_count.py | 28 def tearDown(self): member in TestKprobeCnt 58 def tearDown(self): member in TestAutoKprobe 74 def tearDown(self): member in TestProbeQuota 86 def tearDown(self): member in TestProbeNotExist
|
D | test_debuginfo.py | 58 def tearDown(self): member in Harness 96 def tearDown(self): member in TestDebuglink 97 super(TestDebuglink, self).tearDown() 124 def tearDown(self): member in TestBuildid 125 super(TestBuildid, self).tearDown()
|
/external/guava/guava-testlib/test/com/google/common/collect/testing/ |
D | FeatureSpecificTestSuiteBuilderTest.java | 64 final boolean tearDown[] = {false}; in testLifecycle() 69 tearDown[0] = true; in testLifecycle() 86 assertTrue(tearDown[0]); in testLifecycle()
|
/external/guava/android/guava-testlib/test/com/google/common/collect/testing/ |
D | FeatureSpecificTestSuiteBuilderTest.java | 64 final boolean tearDown[] = {false}; in testLifecycle() 69 tearDown[0] = true; in testLifecycle() 86 assertTrue(tearDown[0]); in testLifecycle()
|
/external/webrtc/sdk/objc/unittests/ |
D | RTCCameraVideoCapturerTests.mm | 108 - (void)tearDown { method 461 [test tearDown]; 468 [test tearDown]; 475 [test tearDown]; 482 [test tearDown]; 489 [test tearDown]; 497 [test tearDown]; 505 [test tearDown]; 513 [test tearDown]; 521 [test tearDown]; [all …]
|
/external/python/oauth2client/tests/contrib/django_util/ |
D | test_django_util.py | 48 def tearDown(self): member in OAuth2SetupTest 131 def tearDown(self): member in SessionStorageTest 132 super(SessionStorageTest, self).tearDown() 161 def tearDown(self): member in TestUserOAuth2Object 162 super(TestUserOAuth2Object, self).tearDown()
|
/external/testng/src/test/java/ |
D | ConverterSample2.java | 14 protected void tearDown() throws Exception { in tearDown() method in ConverterSample2 15 super.tearDown(); in tearDown()
|
/external/testng/src/test/java/test/converter/ |
D | ConverterSample1.java | 14 protected void tearDown() throws Exception { in tearDown() method in ConverterSample1 15 super.tearDown(); in tearDown()
|