Home
last modified time | relevance | path

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

12345678910>>...123

/external/guava/android/guava-testlib/src/com/google/common/collect/testing/
DAbstractTester.java42 private @Nullable Runnable tearDown; field in AbstractTester
54 public void tearDown() throws Exception { in tearDown() method in AbstractTester
55 if (tearDown != null) { in tearDown()
56 tearDown.run(); in tearDown()
62 G subjectGenerator, String suiteName, @Nullable Runnable setUp, @Nullable Runnable tearDown) { in init() argument
66 this.tearDown = tearDown; in init()
DFeatureSpecificTestSuiteBuilder.java70 private Runnable tearDown; field in FeatureSpecificTestSuiteBuilder
93 public B withTearDown(Runnable tearDown) { in withTearDown() argument
94 this.tearDown = tearDown; in withTearDown()
99 return tearDown; in getTearDown()
286 tester.init(subjectGenerator, name, setUp, tearDown); in makeSuiteForTesterClass()
/external/guava/guava-testlib/src/com/google/common/collect/testing/
DAbstractTester.java42 private @Nullable Runnable tearDown; field in AbstractTester
54 public void tearDown() throws Exception { in tearDown() method in AbstractTester
55 if (tearDown != null) { in tearDown()
56 tearDown.run(); in tearDown()
62 G subjectGenerator, String suiteName, @Nullable Runnable setUp, @Nullable Runnable tearDown) { in init() argument
66 this.tearDown = tearDown; in init()
DFeatureSpecificTestSuiteBuilder.java70 private Runnable tearDown; field in FeatureSpecificTestSuiteBuilder
93 public B withTearDown(Runnable tearDown) { in withTearDown() argument
94 this.tearDown = tearDown; in withTearDown()
99 return tearDown; in getTearDown()
286 tester.init(subjectGenerator, name, setUp, tearDown); in makeSuiteForTesterClass()
/external/python/cpython3/Lib/test/test_unittest/
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/android/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()
103 tearDown(); in runBare()
108 protected void tearDown() { in tearDown() method in TearDownStackTest
119 public void tearDown() throws Exception { in buildTearDownStack()
141 public void tearDown() throws Exception { in tearDown() method in TearDownStackTest.ThrowingTearDown
159 public void tearDown() throws Exception { in tearDown() method in TearDownStackTest.SimpleTearDown
DTestLogHandlerTest.java48 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/
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()
103 tearDown(); in runBare()
108 protected void tearDown() { in tearDown() method in TearDownStackTest
119 public void tearDown() throws Exception { in buildTearDownStack()
141 public void tearDown() throws Exception { in tearDown() method in TearDownStackTest.ThrowingTearDown
159 public void tearDown() throws Exception { in tearDown() method in TearDownStackTest.SimpleTearDown
DTestLogHandlerTest.java48 public void tearDown() throws Exception { in setUp()
81 tearDown(); in runBare()
86 protected void tearDown() { in tearDown() method in TestLogHandlerTest
/external/guava/android/guava-tests/test/com/google/common/io/
DSourceSinkFactories.java115 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-testlib/src/com/google/common/testing/
DTearDownStack.java60 public final void addTearDown(TearDown tearDown) { in addTearDown() argument
62 stack.addFirst(checkNotNull(tearDown)); in addTearDown()
74 for (TearDown tearDown : stackCopy) { in runTearDown()
76 tearDown.tearDown(); in runTearDown()
/external/guava/android/guava-testlib/src/com/google/common/testing/
DTearDownStack.java60 public final void addTearDown(TearDown tearDown) { in addTearDown() argument
62 stack.addFirst(checkNotNull(tearDown)); in addTearDown()
74 for (TearDown tearDown : stackCopy) { in runTearDown()
76 tearDown.tearDown(); in runTearDown()
/external/jazzer-api/src/main/java/com/code_intelligence/jazzer/driver/
DFuzzTargetHolder.java49 public final Optional<Method> tearDown; field in FuzzTargetHolder.FuzzTarget
51 public FuzzTarget(Method method, Callable<Object> newInstance, Optional<Method> tearDown) { in FuzzTarget() argument
54 this.tearDown = tearDown; in FuzzTarget()
/external/guava/guava-tests/test/com/google/common/io/
DSourceSinkFactories.java150 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/pyfakefs/pyfakefs/
Dpytest_plugin.py40 patcher.tearDown()
52 patcher.tearDown()
64 patcher.tearDown()
76 patcher.tearDown()
/external/chromium-crossbench/tests/crossbench/plt/
Dhelper.py29 def tearDown(self): member in BaseMockPlatformTestCase
34 super().tearDown()
64 def tearDown(self) -> None: member in BasePosixMockPlatformTestCase
66 super().tearDown()
/external/python/cpython3/Lib/test/
Dtest_dbm_sqlite3.py25 def tearDown(self): member in _SQLiteDbmTests
71 def tearDown(self): member in ReadOnly
73 super().tearDown()
100 def tearDown(self): member in ReadWrite
102 super().tearDown()
146 def tearDown(self): member in Misuse
148 super().tearDown()
226 def tearDown(self): member in DataTypes
228 super().tearDown()
/external/bcc/tests/python/
Dtest_debuginfo.py59 def tearDown(self): member in Harness
97 def tearDown(self): member in TestDebuglink
98 super(TestDebuglink, self).tearDown()
126 def tearDown(self): member in TestBuildid
127 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/guava/android/guava-testlib/test/com/google/common/collect/testing/
DFeatureSpecificTestSuiteBuilderTest.java49 boolean[] tearDown = {false}; in testLifecycle()
54 tearDown[0] = true; in testLifecycle()
72 assertTrue(tearDown[0]); in testLifecycle()
/external/guava/guava-testlib/test/com/google/common/collect/testing/
DFeatureSpecificTestSuiteBuilderTest.java49 boolean[] tearDown = {false}; in testLifecycle()
54 tearDown[0] = true; in testLifecycle()
72 assertTrue(tearDown[0]); in testLifecycle()
/external/pigweed/pw_emu/py/tests/
Dfrontend_test.py52 def tearDown(self) -> None: member in TestEmulator
54 super().tearDown()
140 def tearDown(self) -> None: member in TestGdbEmptyConfig
142 super().tearDown()
/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()
/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()

12345678910>>...123