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

1234567891011>>

/external/embunit/inc/
H A DTestCase.h45 void(*tearDown)(void); member in struct:__TestCase
51 #define new_TestCase(name,setUp,tearDown,runTest)\
56 tearDown,\
/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/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
H A DMessageFormatFieldTest.java41 protected void tearDown() { method in class:MessageFormatFieldTest
H A DNumberFormatFieldTest.java41 protected void tearDown() { method in class:NumberFormatFieldTest
/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);
/external/junit/src/junit/extensions/
H A DTestSetup.java24 tearDown();
40 protected void tearDown() throws Exception { method in class:TestSetup
/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...]
/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/embunit/src/
H A DTestCaller.c49 cs.tearDown = self->tearDown;
H A DTestCase.c62 if (self->tearDown) {
63 self->tearDown();
/external/antlr/antlr-3.4/runtime/ObjC/Framework/test/runtime/TestRewriteRuleTokenStream/
H A DTestRewriteRuleTokenStream.h43 - (void) tearDown;
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
H A DUnknownHostExceptionTest.java66 protected void tearDown() { method in class:UnknownHostExceptionTest
H A DUnknownServiceExceptionTest.java65 protected void tearDown() { method in class:UnknownServiceExceptionTest
H A DSocketTimeoutExceptionTest.java63 protected void tearDown() throws Exception { method in class:SocketTimeoutExceptionTest
64 super.tearDown();
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DTooManyListenersExceptionTest.java62 protected void tearDown() { method in class:TooManyListenersExceptionTest
/external/chromium_org/chrome/test/chromeos/utilities/
H A Dvm_setup_state.py29 pyuitest.tearDown()
/external/apache-harmony/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
H A DNodeChangeListenerTest.java42 * @see TestCase#tearDown()
45 protected void tearDown() throws Exception { method in class:NodeChangeListenerTest
46 super.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/chrome/test/functional/chromoting/
H A Dme2me_enable.py29 def tearDown(self): member in class:Me2MeEnable
37 pyauto.PyUITest.tearDown(self)
/external/chromium_org/tools/telemetry/telemetry/unittest/
H A Dtab_test_case.py34 self.tearDown()
37 def tearDown(self): member in class:TabTestCase
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DUnsupportedEncodingExceptionTest.java66 protected void tearDown() { method in class:UnsupportedEncodingExceptionTest
H A DWriteAbortedExceptionTest.java71 protected void tearDown() { method in class:WriteAbortedExceptionTest

Completed in 488 milliseconds

1234567891011>>