Lines Matching refs:expected
111 func ensureListContains(t *testing.T, result []string, expected string) {
113 if !android.InList(expected, result) {
114 t.Errorf("%q is not found in %v", expected, result)
313 func checkAndroidBpContents(expected string) snapshotBuildInfoChecker {
316 …android.AssertTrimmedStringEquals(info.t, "Android.bp contents do not match", expected, info.andro…
325 func checkUnversionedAndroidBpContents(expected string) snapshotBuildInfoChecker {
328 …medStringEquals(info.t, "unversioned Android.bp contents do not match", expected, info.androidUnve…
340 func checkVersionedAndroidBpContents(expected string) snapshotBuildInfoChecker {
343 …android.AssertTrimmedStringEquals(info.t, "versioned Android.bp contents do not match", expected, …
352 func checkAllCopyRules(expected string) snapshotBuildInfoChecker {
355 android.AssertTrimmedStringEquals(info.t, "Incorrect copy rules", expected, info.copyRules)
359 func checkAllOtherCopyRules(expected string) snapshotBuildInfoChecker {
362 android.AssertTrimmedStringEquals(info.t, "Incorrect copy rules", expected, info.otherCopyRules)
367 func checkMergeZips(expected ...string) snapshotBuildInfoChecker {
374 android.AssertDeepEquals(info.t, "mismatching merge zip files", expected, info.mergeZips)