HomeSort by relevance Sort by last modified time
    Searched refs:Test (Results 1 - 25 of 760) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/dx/src/junit/framework/
TestListener.java 4 * A Listener for test progress
10 public void addError(Test test, Throwable t);
14 public void addFailure(Test test, AssertionFailedError t);
16 * A test ended.
18 public void endTest(Test test);
20 * A test started.
22 public void startTest(Test test)
    [all...]
Test.java 4 * A <em>Test</em> can be run and collect its results.
8 public interface Test {
10 * Counts the number of test cases that will be run by this test.
14 * Runs a test and collects its result in a TestResult instance.
  /external/junit/src/junit/framework/
TestListener.java 4 * A Listener for test progress
10 public void addError(Test test, Throwable t);
14 public void addFailure(Test test, AssertionFailedError t);
16 * A test ended.
18 public void endTest(Test test);
20 * A test started.
22 public void startTest(Test test)
    [all...]
Test.java 4 * A <em>Test</em> can be run and collect its results.
8 public interface Test {
10 * Counts the number of test cases that will be run by this test.
14 * Runs a test and collects its result in a TestResult instance.
  /external/stlport/test/unit/
_template.cpp 13 class Test : public CPPUNIT_NS::TestCase
15 CPPUNIT_TEST_SUITE(Test);
16 CPPUNIT_TEST(test);
20 void test();
23 CPPUNIT_TEST_SUITE_REGISTRATION(Test);
28 void Test::test() function in class:Test
  /libcore/junit/src/main/java/junit/framework/
TestListener.java 4 * A Listener for test progress
10 public void addError(Test test, Throwable t);
14 public void addFailure(Test test, AssertionFailedError t);
16 * A test ended.
18 public void endTest(Test test);
20 * A test started.
22 public void startTest(Test test)
    [all...]
Test.java 4 * A <em>Test</em> can be run and collect its results.
8 public interface Test {
10 * Counts the number of test cases that will be run by this test.
14 * Runs a test and collects its result in a TestResult instance.
  /libcore/luni/src/test/resources/tests/api/java/net/
TestCodeSigners.jar 
  /libcore/support/src/test/java/tests/resources/
Inserted_Entry_Manifest.jar 
Inserted_Entry_Manifest_with_DigestCode.jar 
Integrate.jar 
Modified_Class.jar 
Modified_Manifest_EntryAttributes.jar 
Modified_Manifest_MainAttributes.jar 
Modified_SF_EntryAttributes.jar 
TestCodeSigners.jar 
  /libcore/support/src/test/java/tests/resources/net/
TestCodeSigners.jar 
  /ndk/sources/android/stlport/test/unit/
_template.cpp 13 class Test : public CPPUNIT_NS::TestCase
15 CPPUNIT_TEST_SUITE(Test);
16 CPPUNIT_TEST(test);
20 void test();
23 CPPUNIT_TEST_SUITE_REGISTRATION(Test);
28 void Test::test() function in class:Test
  /external/junit/src/junit/swingui/
TestRunView.java 5 import junit.framework.Test;
16 * Returns the currently selected Test in the View
18 public Test getSelectedTest();
26 public void revealFailure(Test failure);
28 * Adds the TestRunView to the test run views tab
34 public void aboutToStart(Test suite, TestResult result);
36 * Informs that the run of the test suite has finished
38 public void runFinished(Test suite, TestResult result);
TestRunContext.java 5 import junit.framework.Test;
8 * The interface for accessing the Test run context. Test run views
14 * Handles the selection of a Test.
16 public void handleTestSelected(Test test);
  /external/chromium/testing/
platform_test.h 19 // releases an outer NSAutoreleasePool for each test case. For now, it's only
22 class PlatformTest : public testing::Test {
31 typedef testing::Test PlatformTest;
  /libcore/luni/src/test/java/org/apache/harmony/xml/
AllTests.java 19 import junit.framework.Test;
23 public static Test suite() {
  /libcore/luni/src/test/java/sun/misc/
AllTests.java 19 import junit.framework.Test;
23 public static Test suite() {
24 TestSuite suite = new TestSuite("Test for sun.misc");
  /libcore/xml/src/test/java/org/kxml2/io/
AllTests.java 19 import junit.framework.Test;
23 public static Test suite() {
  /dalvik/dx/src/junit/extensions/
TestDecorator.java 7 * for defining new test decorators. Test decorator subclasses
8 * can be introduced to add behaviour before or after a test
12 public class TestDecorator extends Assert implements Test {
13 protected Test fTest;
15 public TestDecorator(Test test) {
16 fTest= test;
35 public Test getTest() {

Completed in 2316 milliseconds

1 2 3 4 5 6 7 8 91011>>