Searched refs:tearDown (Results 1 - 25 of 282) sorted by relevance

1234567891011>>

/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DAbstractTester.java37 private Runnable tearDown; field in class:AbstractTester
47 @Override public void tearDown() throws Exception { method in class:AbstractTester
48 if (tearDown != null) {
49 tearDown.run();
55 G subjectGenerator, String suiteName, Runnable setUp, Runnable tearDown) {
59 this.tearDown = tearDown;
54 init( G subjectGenerator, String suiteName, Runnable setUp, Runnable tearDown) argument
/external/objenesis/main/test/org/objenesis/
H A DSerializingInstantiatorTest.java32 protected void tearDown() throws Exception { method in class:SerializingInstantiatorTest
33 super.tearDown();
/external/guava/guava-testlib/src/com/google/common/testing/
H A DTearDown.java23 * An object that can perform a {@link #tearDown} operation.
50 void tearDown() throws Exception; method in interface:TearDown
H A DTearDownAccepter.java37 * {@link junit.framework.TestCase#tearDown()} step.
39 void addTearDown(TearDown tearDown); argument
H A DTearDownStack.java53 public final void addTearDown(TearDown tearDown) { argument
54 stack.addFirst(tearDown);
62 for (TearDown tearDown : stack) {
64 tearDown.tearDown();
68 "exception thrown during tearDown: " + t.getMessage(), t);
H A DSloppyTearDown.java42 public final void tearDown() { method in class:SloppyTearDown
47 "exception thrown during tearDown: " + t.getMessage(), t);
/external/junit/src/junit/extensions/
H A DTestSetup.java24 tearDown();
40 protected void tearDown() throws Exception { method in class:TestSetup
/external/lldb/test/unittest2/test/
H A Dtest_functiontestcase.py16 # prior to each test. Likewise, if a tearDown() method is defined, the
33 def tearDown(): function in function:Test_FunctionTestCase.test_run_call_order__error_in_setUp
34 events.append('tearDown')
37 unittest2.FunctionTestCase(test, setUp, tearDown).run(result)
41 # prior to each test. Likewise, if a tearDown() method is defined, the
58 def tearDown(): function in function:Test_FunctionTestCase.test_run_call_order__error_in_test
59 events.append('tearDown')
61 expected = ['startTest', 'setUp', 'test', 'addError', 'tearDown',
63 unittest2.FunctionTestCase(test, setUp, tearDown).run(result)
67 # prior to each test. Likewise, if a tearDown() metho
84 def tearDown(): function in function:Test_FunctionTestCase.test_run_call_order__failure_in_test
109 def tearDown(): function in function:Test_FunctionTestCase.test_run_call_order__error_in_tearDown
[all...]
/external/guava/guava-tests/test/com/google/common/testing/
H A DTearDownStackTest.java40 final SimpleTearDown tearDown = new SimpleTearDown();
41 stack.addTearDown(tearDown);
43 assertEquals(false, tearDown.ran);
47 assertEquals("tearDown should have run", true, tearDown.ran);
109 tearDown();
113 @Override protected void tearDown() { method in class:TearDownStackTest
126 public void tearDown() throws Exception {
145 public void tearDown() throws Exception { method in class:TearDownStackTest.ThrowingTearDown
163 public void tearDown() throw method in class:TearDownStackTest.SimpleTearDown
[all...]
H A DTestLogHandlerTest.java47 public void tearDown() throws Exception {
79 tearDown();
83 @Override protected void tearDown() { method in class:TestLogHandlerTest
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DForwardingListenableFutureTest.java49 protected void tearDown() throws Exception { method in class:ForwardingListenableFutureTest
50 tester.tearDown();
51 super.tearDown();
/external/chromium_org/mojo/android/javatests/src/org/chromium/mojo/
H A DMojoTestCase.java33 * @see android.test.InstrumentationTestCase#tearDown()
36 protected void tearDown() throws Exception { method in class:MojoTestCase
38 super.tearDown();
/external/owasp/sanitizer/src/tests/org/owasp/html/
H A DFuzzyTestCase.java59 @Override protected void tearDown() throws Exception { method in class:FuzzyTestCase
60 super.tearDown();
/external/antlr/antlr-3.4/runtime/ObjC/Framework/test/runtime/TestRewriteRuleTokenStream/
H A DTestRewriteRuleTokenStream.h43 - (void) tearDown;
/external/chromium_org/chrome/test/chromeos/utilities/
H A Dvm_setup_state.py29 pyuitest.tearDown()
/external/apache-harmony/security/src/test/impl/java.injected/java/security/
H A DURIParameterTest.java65 * @see TestCase#tearDown()
67 protected void tearDown() throws Exception { method in class:URIParameterTest
68 super.tearDown();
/external/chromium_org/base/android/javatests/src/org/chromium/base/
H A DLibraryLoaderHelperTest.java48 public void tearDown() throws Exception { method in class:LibraryLoaderHelperTest
51 super.tearDown();
/external/chromium_org/tools/telemetry/telemetry/core/platform/
H A Dandroid_device_unittest.py25 def tearDown(self): member in class:AndroidDeviceTest
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dlogtesting.py89 def tearDown(self):
90 self._log.tearDown() # Turn off and reset logging.
163 def tearDown(self): member in class:LogTesting
168 This method should normally be called in the tearDown() method of a
186 # single test method, and (2) it lets us check in the tearDown() method
205 # AssertionError can occur in the tearDown() because the
211 # setUp() and tearDown() methods will not get fired for test case classes
238 def tearDown(self): member in class:LoggingTestCase
239 self._log.tearDown()
/external/valgrind/main/drd/tests/
H A Dstd_list.cpp46 void tearDown() { function in class:Test
64 casted->tearDown();
73 casted->tearDown();
/external/nanohttpd/core/src/test/java/fi/iki/elonen/integration/
H A DIntegrationTestBase.java31 public void tearDown() { method in class:IntegrationTestBase
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
H A DJDWPRawTestCase.java38 * <code>setUp()</code> and <code>tearDown()</code> being common for all
115 protected void tearDown() throws Exception { method in class:JDWPRawTestCase
120 super.tearDown();
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DErrorManagerTest.java41 public void tearDown() throws Exception { method in class:ErrorManagerTest
43 super.tearDown();
/external/apache-harmony/x-net/src/test/impl/java.injected/javax/net/ssl/
H A DSSLServerSocketFactoryTest.java62 * @see TestCase#tearDown()
65 protected void tearDown() throws Exception { method in class:SSLServerSocketFactoryTest
66 super.tearDown();
H A DSSLSocketFactoryTest.java62 * @see TestCase#tearDown()
65 protected void tearDown() throws Exception { method in class:SSLSocketFactoryTest
66 super.tearDown();

Completed in 3210 milliseconds

1234567891011>>