/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
D | AbstractTester.java | 40 private Runnable tearDown; field in AbstractTester 50 @Override public void tearDown() throws Exception { in tearDown() method in AbstractTester 51 if (tearDown != null) { in tearDown() 52 tearDown.run(); in tearDown() 58 G subjectGenerator, String suiteName, Runnable setUp, Runnable tearDown) { in init() argument 62 this.tearDown = tearDown; in init()
|
D | FeatureSpecificTestSuiteBuilder.java | 72 private Runnable tearDown; field in FeatureSpecificTestSuiteBuilder 92 public B withTearDown(Runnable tearDown) { in withTearDown() argument 93 this.tearDown = tearDown; in withTearDown() 98 return tearDown; in getTearDown() 298 tester.init(subjectGenerator, name, setUp, tearDown); in makeSuiteForTesterClass()
|
/external/guava/guava-testlib/test/com/google/common/testing/ |
D | TearDownStackTest.java | 34 final SimpleTearDown tearDown = new SimpleTearDown(); in testSingleTearDown() local 35 stack.addTearDown(tearDown); in testSingleTearDown() 37 assertEquals(false, tearDown.ran); in testSingleTearDown() 41 assertEquals("tearDown should have run", true, tearDown.ran); in testSingleTearDown() 101 tearDown(); in runBare() 105 @Override protected void tearDown() { in tearDown() method in TearDownStackTest 118 public void tearDown() throws Exception { in buildTearDownStack() 137 public void tearDown() throws Exception { in tearDown() method in TearDownStackTest.ThrowingTearDown 155 public void tearDown() throws Exception { in tearDown() method in TearDownStackTest.SimpleTearDown
|
D | TestLogHandlerTest.java | 47 public void tearDown() throws Exception { in setUp() 79 tearDown(); in runBare() 83 @Override 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/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/guava-testlib/src/com/google/common/testing/ |
D | TearDownStack.java | 54 public final void addTearDown(TearDown tearDown) { in addTearDown() argument 55 stack.addFirst(checkNotNull(tearDown)); in addTearDown() 63 for (TearDown tearDown : stack) { in runTearDown() 65 tearDown.tearDown(); in runTearDown()
|
/external/guava/guava-tests/test/com/google/common/io/ |
D | SourceSinkFactories.java | 118 public void tearDown() throws IOException { in asCharSourceFactory() method in SourceSinkFactories 119 factory.tearDown(); in asCharSourceFactory() 148 public void tearDown() throws IOException { 149 factory.tearDown(); 170 public void tearDown() throws IOException { 171 factory.tearDown(); 189 public void tearDown() throws IOException { 206 public void tearDown() throws IOException { 223 public void tearDown() throws IOException { 240 public void tearDown() throws IOException { [all …]
|
/external/python/cpython3/Lib/distutils/tests/ |
D | support.py | 27 def tearDown(self): member in LoggingSilencer 30 super().tearDown() 61 def tearDown(self): member in TempdirManager 65 super().tearDown() 128 def tearDown(self): member in EnvironGuard 137 super(EnvironGuard, self).tearDown()
|
/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/bcc/tests/python/ |
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()
|
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
|
/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()
|
D | test_decorators.py | 45 def tearDown(self): member in OAuth2EnabledDecoratorTest 46 super(OAuth2EnabledDecoratorTest, self).tearDown() 119 def tearDown(self): member in OAuth2RequiredDecoratorTest 120 super(OAuth2RequiredDecoratorTest, self).tearDown() 215 def tearDown(self): member in OAuth2RequiredDecoratorStorageModelTest 216 super(OAuth2RequiredDecoratorStorageModelTest, self).tearDown()
|
/external/guava/guava-testlib/test/com/google/common/collect/testing/ |
D | FeatureSpecificTestSuiteBuilderTest.java | 65 final boolean tearDown[] = {false}; in testLifecycle() 69 tearDown[0] = true; in testLifecycle() 81 assertTrue(tearDown[0]); in testLifecycle()
|
/external/guava/guava-gwt/test/com/google/common/testing/ |
D | TearDownStackTest_gwt.java | 30 testCase.tearDown(); in testMultipleTearDownsHappenInOrder() 56 testCase.tearDown(); in testSingleTearDown() 82 testCase.tearDown(); in testThrowingTearDown()
|
/external/droiddriver/src/io/appium/droiddriver/helpers/ |
D | BaseDroidDriverTest.java | 80 protected void tearDown() throws Exception { in tearDown() method in BaseDroidDriverTest 81 super.tearDown(); in tearDown() 195 tearDown(); in runBare() 241 tearDown(); in runTest()
|
/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()
|
/external/python/google-api-python-client/tests/ |
D | test__auth.py | 31 def tearDown(self): member in TestAuthWithGoogleAuth 85 def tearDown(self): member in TestAuthWithOAuth2Client 136 def tearDown(self): member in TestAuthWithoutAuth 149 def tearDown(self): member in TestGoogleAuthWithoutHttplib2
|
/external/python/cpython2/Lib/sqlite3/test/ |
D | factory.py | 47 def tearDown(self): member in ConnectionFactoryTests 57 def tearDown(self): member in CursorFactoryTests 87 def tearDown(self): member in RowFactoryTestsBackwardsCompat 195 def tearDown(self): member in RowFactoryTests 230 def tearDown(self): member in TextFactoryTests 268 def tearDown(self): member in TextFactoryTestsWithEmbeddedZeroBytes
|
/external/libphonenumber/libphonenumber/test/com/google/i18n/phonenumbers/ |
D | TestMetadataTestCase.java | 55 protected void tearDown() throws Exception { in tearDown() method in TestMetadataTestCase 57 super.tearDown(); in tearDown()
|
/external/junit/src/main/java/junit/extensions/ |
D | TestSetup.java | 24 tearDown(); in run() 40 protected void tearDown() throws Exception { in tearDown() method in TestSetup
|
/external/owasp/sanitizer/src/tests/org/owasp/html/ |
D | FuzzyTestCase.java | 59 @Override protected void tearDown() throws Exception { in tearDown() method in FuzzyTestCase 60 super.tearDown(); in tearDown()
|
/external/tensorflow/tensorflow/lite/experimental/swift/Tests/ |
D | ModelTests.swift | 36 override func tearDown() { in tearDown() function 39 super.tearDown() in tearDown()
|