Searched defs:test (Results 1 - 25 of 135) sorted by relevance

123456

/libcore/luni/src/test/etc/loading-test-jar/
H A DTest1.java17 package test; package
23 public static String test() { method in class:Test1
H A DTarget.java17 package test; package
/libcore/ojluni/src/test/java/time/test/java/time/
H A DTestOffsetTime.java60 package test.java.time;
H A DTestYear.java60 package test.java.time;
H A DTestYearMonth.java60 package test.java.time;
H A DTestZonedDateTime.java60 package test.java.time;
H A DTestClock_System.java60 package test.java.time;
79 Clock test = Clock.system(PARIS);
80 Clock changed = test.withZone(PARIS);
81 assertSame(test, changed);
86 Clock test = Clock.system(PARIS);
87 assertEquals(test.toString(), "SystemClock[Europe/Paris]");
H A DTestPeriod.java60 package test.java.time;
H A DTestZoneOffset.java60 package test.java.time;
/libcore/support/src/test/java/tests/security/
H A DTestHelper.java20 public abstract void test(T testObject) throws Exception; method in class:TestHelper
H A DAlgorithmParameterAsymmetricHelper.java42 public void test(AlgorithmParameters parameters) throws Exception { method in class:AlgorithmParameterAsymmetricHelper
H A DAlgorithmParameterKeyAgreementHelper.java36 public void test(AlgorithmParameters parameters) throws Exception { method in class:AlgorithmParameterKeyAgreementHelper
H A DCipherAsymmetricCryptHelper.java24 private static final String plainData = "some data to encrypt and decrypt test";
31 public void test(KeyPair keyPair) throws Exception { method in class:CipherAsymmetricCryptHelper
32 test(keyPair.getPrivate(), keyPair.getPublic());
H A DCipherSymmetricCryptHelper.java24 private static final String plainData = "some data to encrypt and decrypt test";
31 public void test(SecretKey key) throws Exception { method in class:CipherSymmetricCryptHelper
32 test(key, key);
/libcore/dom/src/test/java/org/w3c/domts/
H A DDOMTestSink.java19 Initial test running using JUnit.
26 public void addTest(Class test); argument
H A DJUnitTestSuiteAdapter.java23 private DOMTestSuite test; field in class:JUnitTestSuiteAdapter
25 public JUnitTestSuiteAdapter(DOMTestSuite test) { argument
26 super(test.getTargetURI());
27 this.test = test;
28 test.build(this);
32 DOMTestDocumentBuilderFactory factory = test.getFactory();
48 TestCase test = new JUnitTestCaseAdapter((DOMTestCase) domtest);
49 addTest(test);
53 TestSuite test
[all...]
/libcore/ojluni/src/test/java/nio/file/attribute/
H A DAclEntryEmptySetTest.java24 /* @test
29 // jdk/test/java/nio/file/attribute/AclEntry/EmptySet.java
31 package test.java.nio.file.attribute;
H A DBasicFileAttributeViewCreationTimeTest.java24 /* @test
26 * @summary Basic test for creationTime attribute on platforms/file systems
31 // jdk/test/java/nio/file/attribute/BasicFileAttributeView/CreationTime.java
33 package test.java.nio.file.attribute;
35 import test.java.nio.file.TestUtil;
64 static void test(Path top) throws IOException { method in class:BasicFileAttributeViewCreationTimeTest
83 // Android-changed: This test is never run on Mac OS or windows hosts.
129 test(dir);
/libcore/ojluni/src/test/java/time/test/java/time/chrono/
H A DTestChronologyPerf.java25 package test.java.time.chrono;
H A DTestServiceLoader.java59 package test.java.time.chrono;
80 // Android-changed: This test assumes that the system classloader sees all test classes.
/libcore/ojluni/src/test/java/time/test/java/time/format/
H A DTestDecimalStyle.java60 package test.java.time.format;
/libcore/ojluni/src/test/java/time/test/java/time/temporal/
H A DTestJulianFields.java60 package test.java.time.temporal;
/libcore/ojluni/src/main/java/java/util/function/
H A DDoublePredicate.java35 * whose functional method is {@link #test(double)}.
50 boolean test(double value); method in interface:DoublePredicate
70 return (value) -> test(value) && other.test(value);
81 return (value) -> !test(value);
102 return (value) -> test(value) || other.test(value);
H A DIntPredicate.java35 * whose functional method is {@link #test(int)}.
50 boolean test(int value); method in interface:IntPredicate
70 return (value) -> test(value) && other.test(value);
81 return (value) -> !test(value);
102 return (value) -> test(value) || other.test(value);
H A DLongPredicate.java35 * whose functional method is {@link #test(long)}.
50 boolean test(long value); method in interface:LongPredicate
70 return (value) -> test(value) && other.test(value);
81 return (value) -> !test(value);
102 return (value) -> test(value) || other.test(value);

Completed in 326 milliseconds

123456