Home
last modified time | relevance | path

Searched refs:errorSubstring (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/cts/hostsidetests/appsecurity/src/android/appsecurity/cts/
H A DPkgInstallSignatureVerificationTest.java1896 private void assertInstallV4FailsWithError(String apkFilenameInResources, String errorSubstring) in assertInstallV4FailsWithError() argument
1901 + " with \"" + errorSubstring + "\""); in assertInstallV4FailsWithError()
1905 errorSubstring, in assertInstallV4FailsWithError()
1910 String apkFilenameInResources, String errorSubstring) throws Exception { in assertInstallFailsWithError() argument
1914 + " with \"" + errorSubstring + "\""); in assertInstallFailsWithError()
1918 errorSubstring, in assertInstallFailsWithError()
1923 String apkFilenameInResources, String errorSubstring) throws Exception { in assertInstallEphemeralFailsWithError() argument
1927 + " with \"" + errorSubstring + "\""); in assertInstallEphemeralFailsWithError()
1931 errorSubstring, in assertInstallEphemeralFailsWithError()
/aosp_15_r20/external/dagger2/javatests/dagger/internal/codegen/
H A DDaggerModuleMethodSubject.java139 void hasError(String errorSubstring) { in hasError() argument
147 .hasErrorContaining(errorSubstring) in hasError()
/aosp_15_r20/prebuilts/go/linux-x86/src/crypto/tls/
Dhandshake_server_test.go1491 errorSubstring string
1598 if len(test.errorSubstring) == 0 {
1609 t.Errorf("test[%d]: expected error containing %q but got no error", i, test.errorSubstring)
1610 } else if !strings.Contains(serverErr.Error(), test.errorSubstring) {
1611 …t.Errorf("test[%d]: expected error to contain %q but it was %q", i, test.errorSubstring, serverErr)