HomeSort by relevance Sort by last modified time
    Searched full:teardown (Results 326 - 350 of 5693) sorted by null

<<11121314151617181920>>

  /external/python/cpython2/Lib/unittest/test/
test_runner.py 85 def tearDown(self):
86 ordering.append('tearDown')
105 self.assertEqual(ordering, ['setUp', 'test', 'tearDown',
126 def tearDown(self):
127 ordering.append('tearDown')
138 self.assertEqual(ordering, ['setUp', 'test', 'tearDown', 'cleanup1', 'cleanup2'])
  /frameworks/base/test-runner/src/android/test/
ApplicationTestCase.java 39 * <li>After your test completes, the test case {@link #tearDown} method is
114 * be stopped by {@link #tearDown}. If you wish to inject a specialized Context for your
132 * call onTerminate(). Ordinarily this will be called automatically (by {@link #tearDown}, but
144 * test. Subclasses that override this method should make sure they call super.tearDown()
150 protected void tearDown() throws Exception {
159 super.tearDown();
  /packages/apps/Dialer/java/com/android/incallui/
InCallServiceImpl.java 132 tearDown();
138 private void tearDown() {
139 Trace.beginSection("InCallServiceImpl.tearDown");
140 Log.v(this, "tearDown");
142 InCallPresenter.getInstance().tearDown();
145 newReturnToCallController.tearDown();
  /prebuilts/gdb/darwin-x86/lib/python2.7/unittest/test/
test_runner.py 84 def tearDown(self):
85 ordering.append('tearDown')
104 self.assertEqual(ordering, ['setUp', 'test', 'tearDown',
125 def tearDown(self):
126 ordering.append('tearDown')
137 self.assertEqual(ordering, ['setUp', 'test', 'tearDown', 'cleanup1', 'cleanup2'])
  /prebuilts/gdb/linux-x86/lib/python2.7/unittest/test/
test_runner.py 84 def tearDown(self):
85 ordering.append('tearDown')
104 self.assertEqual(ordering, ['setUp', 'test', 'tearDown',
125 def tearDown(self):
126 ordering.append('tearDown')
137 self.assertEqual(ordering, ['setUp', 'test', 'tearDown', 'cleanup1', 'cleanup2'])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/
test_runner.py 84 def tearDown(self):
85 ordering.append('tearDown')
104 self.assertEqual(ordering, ['setUp', 'test', 'tearDown',
125 def tearDown(self):
126 ordering.append('tearDown')
137 self.assertEqual(ordering, ['setUp', 'test', 'tearDown', 'cleanup1', 'cleanup2'])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/
test_runner.py 84 def tearDown(self):
85 ordering.append('tearDown')
104 self.assertEqual(ordering, ['setUp', 'test', 'tearDown',
125 def tearDown(self):
126 ordering.append('tearDown')
137 self.assertEqual(ordering, ['setUp', 'test', 'tearDown', 'cleanup1', 'cleanup2'])
  /external/google-breakpad/src/testing/gtest/samples/
sample5_unittest.cc 71 // TearDown() is invoked immediately after a test finishes. Here we
73 virtual void TearDown() {
78 // know that you can use assertions in SetUp() and TearDown() as
156 // By default, TearDown() inherits the behavior of
157 // QuickTest::TearDown(). As we have no additional cleaning work
160 // virtual void TearDown() {
161 // QuickTest::TearDown();
  /external/googletest/googletest/samples/
sample5_unittest.cc 71 // TearDown() is invoked immediately after a test finishes. Here we
73 virtual void TearDown() {
78 // know that you can use assertions in SetUp() and TearDown() as
156 // By default, TearDown() inherits the behavior of
157 // QuickTest::TearDown(). As we have no additional cleaning work
160 // virtual void TearDown() {
161 // QuickTest::TearDown();
  /external/protobuf/gtest/samples/
sample5_unittest.cc 71 // TearDown() is invoked immediately after a test finishes. Here we
73 virtual void TearDown() {
78 // know that you can use assertions in SetUp() and TearDown() as
156 // By default, TearDown() inherits the behavior of
157 // QuickTest::TearDown(). As we have no additional cleaning work
160 // virtual void TearDown() {
161 // QuickTest::TearDown();
  /external/v8/testing/gtest/samples/
sample5_unittest.cc 71 // TearDown() is invoked immediately after a test finishes. Here we
73 virtual void TearDown() {
78 // know that you can use assertions in SetUp() and TearDown() as
156 // By default, TearDown() inherits the behavior of
157 // QuickTest::TearDown(). As we have no additional cleaning work
160 // virtual void TearDown() {
161 // QuickTest::TearDown();
  /external/vulkan-validation-layers/tests/gtest-1.7.0/samples/
sample5_unittest.cc 71 // TearDown() is invoked immediately after a test finishes. Here we
73 virtual void TearDown() {
78 // know that you can use assertions in SetUp() and TearDown() as
156 // By default, TearDown() inherits the behavior of
157 // QuickTest::TearDown(). As we have no additional cleaning work
160 // virtual void TearDown() {
161 // QuickTest::TearDown();
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/samples/
sample5_unittest.cc 71 // TearDown() is invoked immediately after a test finishes. Here we
73 virtual void TearDown() {
78 // know that you can use assertions in SetUp() and TearDown() as
156 // By default, TearDown() inherits the behavior of
157 // QuickTest::TearDown(). As we have no additional cleaning work
160 // virtual void TearDown() {
161 // QuickTest::TearDown();
  /cts/hostsidetests/devicepolicy/app/LauncherTestsSupport/src/com/android/cts/launchertests/support/
LauncherCallbackTestsService.java 91 teardown(); method
99 teardown(); method
107 teardown(); method
115 teardown(); method
156 private void teardown() { method in class:LauncherCallbackTestsService
  /development/samples/training/NsdChat/src/com/example/android/nsdchat/
ChatConnection.java 53 public void tearDown() {
54 mChatServer.tearDown();
56 mChatClient.tearDown();
128 public void tearDown() {
255 public void tearDown() {
  /external/linux-kselftest/tools/testing/selftests/tc-testing/creating-testcases/
AddingTestCases.txt 55 teardown: The list of commands to clean up after the test is completed.
66 SETUP/TEARDOWN ERRORS
69 If an error is detected during the setup/teardown process, execution of the
74 Repeated failures of the setup/teardown may indicate a problem with the test
77 It's possible to include acceptable exit codes with the setup/teardown command
  /libcore/luni/src/test/java/libcore/java/io/
OldBufferedOutputStreamTest.java 83 // To avoid exception during tearDown().
117 // To avoid exception during tearDown().
182 // To avoid exception during tearDown().
186 protected void tearDown() {
195 System.out.println("Exception during tearDown" + e.toString());
  /tools/tradefederation/core/src/com/android/tradefed/targetprep/
RunCommandTargetPreparer.java 51 @Option(name = "teardown-command", description = "adb shell command to run at teardown time")
133 public void tearDown(ITestDevice device, IBuildInfo buildInfo, Throwable e)
146 CLog.d("About to run tearDown command on device %s: %s", device.getSerialNumber(),
149 CLog.v("tearDown cmd: '%s', returned:\n%s", cmd, output);
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
WifiNativeInterfaceManagementTest.java 174 public void tearDown() throws Exception {
203 * Verifies the setup & teardown of a single client interface.
216 * Verifies the setup & teardown of a single softAp interface.
229 * Verifies the setup & teardown of a client & softAp interface.
234 * c) Teardown client interface.
235 * d) Teardown softAp interface.
253 * Verifies the setup & teardown of a client & softAp interface.
258 * c) Teardown softAp interface.
259 * d) Teardown client interface.
277 * Verifies the setup & teardown of a client & softAp interface
    [all...]
  /cts/tests/tests/dpi/src/android/dpi/cts/
ConfigurationScreenLayoutTest.java 54 tearDown();
65 tearDown();
84 tearDown();
  /cts/tests/tests/telecom/src/android/telecom/cts/
CtsRemoteConnectionService.java 35 * {@link #tearDown}.
76 throw new Exception("Mock ConnectionService exists. Failed to call tearDown().");
84 public static void tearDown() {
  /external/autotest/client/cros/networking/chrome_testing/
chrome_networking_test_api.py 70 # Do ChromeOS browser session teardown/setup before disabling the
73 # teardown and setup the browser session.
74 self._chrome_testing.teardown()
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
InterruptionUtil.java 24 import com.google.common.testing.TearDown;
98 tearDownAccepter.addTearDown(new TearDown() {
99 @Override public void tearDown() throws Exception {
  /external/libmojo/mojo/android/javatests/src/org/chromium/mojo/bindings/
ConnectorTest.java 58 * @see MojoTestCase#tearDown()
61 protected void tearDown() throws Exception {
64 super.tearDown();
InterfaceControlMessageTest.java 69 * @see MojoTestCase#tearDown()
72 protected void tearDown() throws Exception {
79 super.tearDown();

Completed in 3123 milliseconds

<<11121314151617181920>>