HomeSort by relevance Sort by last modified time
    Searched refs:shouldFail (Results 1 - 24 of 24) sorted by null

  /art/test/024-illegal-access/src/
PublicAccess.java 22 String shouldFail = SemiPrivate.mStaticPrivvy;
23 System.out.println("Got " + shouldFail);
26 String shouldFail = SemiPrivate.privvyStaticMethod();
27 System.out.println("Got " + shouldFail);
30 String shouldFail = new SemiPrivate().mInstancePrivvy;
31 System.out.println("Got " + shouldFail);
34 String shouldFail = new SemiPrivate().privvyInstanceMethod();
35 System.out.println("Got " + shouldFail);
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/core/util/
PortParserTest.groovy 63 shouldFail(CommandSyntaxException) { PortParser.parseExtendedAddressHostAndPort(PARM) }
68 shouldFail(CommandSyntaxException) { PortParser.parseExtendedAddressHostAndPort(PARM) }
73 shouldFail(CommandSyntaxException) { PortParser.parseExtendedAddressHostAndPort(PARM) }
77 shouldFail(CommandSyntaxException) { PortParser.parseExtendedAddressHostAndPort(null) }
81 shouldFail(CommandSyntaxException) { PortParser.parseExtendedAddressHostAndPort('') }
91 shouldFail(CommandSyntaxException) { PortParser.parseHostAndPort(null) }
95 shouldFail(CommandSyntaxException) { PortParser.parseHostAndPort(PARAMETERS_INSUFFICIENT) }
  /external/testng/src/test/java/test/timeout/
InvocationTimeOutSampleTest.java 17 public void shouldFail() {
  /packages/apps/StorageManager/tests/unit/src/com/android/storagemanager/deletionhelper/
PackageDeletionTaskTest.java 70 private void runTask(HashSet<String> appsToDelete, boolean shouldFail) {
72 new VerifierCallback(appsToDelete, shouldFail));
102 public VerifierCallback(HashSet<String> expectedDeletedApps, boolean shouldFail) {
104 mShouldFail = shouldFail;
  /external/compiler-rt/test/BlocksRuntime/
testfilerunner.h 60 bool shouldFail;
70 @property bool shouldFail;
  /packages/apps/Messaging/tests/src/com/android/messaging/datamodel/media/
MediaResourceManagerTest.java 110 true /* shouldFail */);
134 final int size, final boolean shouldBeCached, final boolean shouldFail) {
138 createAssertListener(shouldBeCached, shouldFail, signal));
150 final boolean shouldBeCached, final boolean shouldFail, final CountDownLatch signal) {
159 assertFalse(shouldFail);
169 assertTrue(shouldFail);
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
_AbstractFakeCommandHandlerTest.groovy 73 shouldFail { commandHandler.handleCommand(null, session) }
74 shouldFail { commandHandler.handleCommand(command, null) }
109 shouldFail { commandHandler.assertValidReplyCode(0) }
113 shouldFail(IllegalStateException) { commandHandler.getRequiredSessionAttribute(session, "undefined") }
123 shouldFail(NotLoggedInException) { commandHandler.verifyLoggedIn(session) }
136 shouldFail(FileSystemException) { commandHandler.verifyFileSystemCondition(false, PATH, '') }
  /external/guava/guava-testlib/test/com/google/common/testing/
NullPointerTesterTest.java 434 shouldFail(new FailOneArgDoesntThrowNPE());
444 shouldFail(new FailOneArgThrowsWrongType());
465 shouldFail(new FailTwoArgsFirstArgDoesntThrowNPE());
476 shouldFail(new FailTwoArgsFirstArgThrowsWrongType());
487 shouldFail(new FailTwoArgsSecondArgDoesntThrowNPE());
498 shouldFail(new FailTwoArgsSecondArgThrowsWrongType());
509 shouldFail(new FailTwoMixedArgsFirstArgDoesntThrowNPE());
520 shouldFail(new FailTwoMixedArgsFirstArgThrowsWrongType());
554 shouldFail(new FailTwoMixedArgsSecondArgDoesntThrowNPE());
565 shouldFail(new FailTwoMixedArgsSecondArgThrowsWrongType())
    [all...]
  /external/testng/src/test/java/test/listeners/
ConfigurationListenerTest.java 55 public void shouldFail() {
  /external/boringssl/src/ssl/test/runner/
runner.go 294 shouldFail bool
864 if !test.shouldFail && (len(test.expectedError) > 0 || len(test.expectedLocalError) > 0) {
865 panic("Error expected without shouldFail in " + test.name)
1059 if failed != test.shouldFail || failed && !correctFailure {
1067 case failed && !test.shouldFail:
1069 case !failed && test.shouldFail:
    [all...]
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/
AbstractFakeFileSystemTestCase.groovy 44 shouldFail { dirEntry.setPath('abc') }
45 shouldFail { fileEntry.setPath('abc') }
75 shouldFail(FileSystemException) { fileSystem.add(new FileEntry(NEW_FILE_IN_SUBDIR)) }
AbstractFileSystemEntryTestCase.groovy 58 shouldFail { entry.path = 'abc' }
PermissionsTest.groovy 93 shouldFail { new Permissions(string) }
AbstractFileSystemTestCase.groovy 97 shouldFail(InvalidFilenameException) { fileSystem.add(new DirectoryEntry(ILLEGAL_FILE)) }
120 shouldFail(InvalidFilenameException) { fileSystem.add(new FileEntry(ILLEGAL_FILE)) }
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/test/
AbstractGroovyTestCase.groovy 79 def message = shouldFail(code)
  /tools/tradefederation/core/tests/src/com/android/tradefed/result/
BugreportCollectorTest.java 305 boolean shouldFail) {
314 if (shouldFail) {
329 ITestInvocationListener listener, String runName, String testName, boolean shouldFail) {
333 if (shouldFail) {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
PluralRulesTest.java 96 Object[][] shouldFail = {
152 for (Object[] shouldFailTest : shouldFail) {
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
PluralRulesTest.java 95 Object[][] shouldFail = {
151 for (Object[] shouldFailTest : shouldFail) {
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/gob/
encoder_test.go 164 func badTypeCheck(e interface{}, shouldFail bool, msg string, t *testing.T) {
176 if shouldFail && err == nil {
179 if !shouldFail && err != nil {
  /prebuilts/go/linux-x86/src/encoding/gob/
encoder_test.go 164 func badTypeCheck(e interface{}, shouldFail bool, msg string, t *testing.T) {
176 if shouldFail && err == nil {
179 if !shouldFail && err != nil {
  /prebuilts/tools/common/m2/repository/org/codehaus/groovy/groovy-all/2.3.6/
groovy-all-2.3.6.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/groovy/groovy-all/2.4.7/
groovy-all-2.4.7.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/groovy/groovy-all/2.2.1/
groovy-all-2.2.1.jar 
  /prebuilts/misc/common/groovy/
groovy-all-1.7.0.jar 

Completed in 1035 milliseconds