Home
last modified time | relevance | path

Searched refs:tearDown (Results 1 – 25 of 1307) sorted by relevance

12345678910>>...53

/external/guava/guava-testlib/src/com/google/common/collect/testing/
DAbstractTester.java40 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()
DFeatureSpecificTestSuiteBuilder.java72 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/
DTearDownStackTest.java34 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
DTestLogHandlerTest.java47 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/
Dtest_functiontestcase.py33 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/
Dtest_functiontestcase.py33 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/
DTearDownStack.java54 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/
DSourceSinkFactories.java118 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/
Dsupport.py27 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/
Dsupport.py36 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/
Dtest_debuginfo.py58 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()
Dtest_probe_count.py28 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/
Dtest_django_util.py48 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()
Dtest_decorators.py45 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/
DFeatureSpecificTestSuiteBuilderTest.java65 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/
DTearDownStackTest_gwt.java30 testCase.tearDown(); in testMultipleTearDownsHappenInOrder()
56 testCase.tearDown(); in testSingleTearDown()
82 testCase.tearDown(); in testThrowingTearDown()
/external/droiddriver/src/io/appium/droiddriver/helpers/
DBaseDroidDriverTest.java80 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/
DConverterSample2.java14 protected void tearDown() throws Exception { in tearDown() method in ConverterSample2
15 super.tearDown(); in tearDown()
/external/testng/src/test/java/test/converter/
DConverterSample1.java14 protected void tearDown() throws Exception { in tearDown() method in ConverterSample1
15 super.tearDown(); in tearDown()
/external/python/google-api-python-client/tests/
Dtest__auth.py31 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/
Dfactory.py47 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/
DTestMetadataTestCase.java55 protected void tearDown() throws Exception { in tearDown() method in TestMetadataTestCase
57 super.tearDown(); in tearDown()
/external/junit/src/main/java/junit/extensions/
DTestSetup.java24 tearDown(); in run()
40 protected void tearDown() throws Exception { in tearDown() method in TestSetup
/external/owasp/sanitizer/src/tests/org/owasp/html/
DFuzzyTestCase.java59 @Override protected void tearDown() throws Exception { in tearDown() method in FuzzyTestCase
60 super.tearDown(); in tearDown()
/external/tensorflow/tensorflow/lite/experimental/swift/Tests/
DModelTests.swift36 override func tearDown() { in tearDown() function
39 super.tearDown() in tearDown()

12345678910>>...53