Lines Matching refs:Errorf
349 t.Errorf("MatchingAny(%s): got %04x, want %04x", data, actual, expected)
353 t.Errorf("len(MatchinAny(%s).Names()): got %d, want %d",
358 t.Errorf("MatchingAny(%s).Names()[%d]: got %s, want %s",
366 t.Errorf("len(MatchingAny(%s).AsList()): got %d, want %d",
371 t.Errorf("MatchingAny(%s).AsList()[%d]: got %s, want %s",
389 t.Errorf("MatchingAnySet(%s): got %04x, want %04x", data, actual, expected)
393 t.Errorf("len(MatchingAnySet(%s).Names()): got %d, want %d",
398 t.Errorf("MatchingAnySet(%s).Names()[%d]: got %s, want %s",
407 t.Errorf("len(MatchingAnySet(%s).AsList()): got %d, want %d",
412 t.Errorf("MatchingAnySet(%s).AsList()[%d]: got %s, want %s",
433 t.Errorf("checkExpected: got %04x, want %04x", actual, expected)
438 t.Errorf("len(actual.Names()): got %d, want %d", len(actualNames), len(tt.expected))
442 t.Errorf("actual.Names()[%d]: got %s, want %s", i, actualNames[i], tt.expected[i])
450 … t.Errorf("len(actual.AsList()): got %d, want %d", len(actualConditions), len(expectedConditions))
454 t.Errorf("actual.AsList()[%d]: got %s, want %s",
463 t.Errorf("actual.IsEmpty(): got false, want true")
466 t.Errorf("actual.HasAny(): got true, want false")
470 t.Errorf("actual.IsEmpty(): got true, want false")
473 t.Errorf("actual.HasAny(all expected): got false, want true")
477 t.Errorf("actual.Hasll(all expected): want true, got false")
481 t.Errorf("actual.HasAny(%q): got false, want true", expectedCondition.Name())
484 t.Errorf("actual.HasAll(%q): got false, want true", expectedCondition.Name())
494 t.Errorf("actual.HasAny(all conditions): want false, got true")
498 t.Errorf("actual.HasAny(all conditions): want true, got false")
503 t.Errorf("actual.HasAll(all conditions): want true, got false")
507 t.Errorf("actual.HasAll(all conditions): want false, got true")
512 t.Errorf("actual.HasAny(%q): got true, want false", unexpectedCondition.Name())
515 t.Errorf("actual.HasAll(%q): got true, want false", unexpectedCondition.Name())
533 t.Errorf("checkExpectedSet: got %04x, want %04x", actual, expected)
538 t.Errorf("len(actual.Names()): got %d, want %d", len(actualNames), len(tt.expected))
542 t.Errorf("actual.Names()[%d]: got %s, want %s", i, actualNames[i], tt.expected[i])
550 … t.Errorf("len(actual.AsList()): got %d, want %d", len(actualConditions), len(expectedConditions))
554 t.Errorf("actual.AsList()[%d}: got %s, want %s",
563 t.Errorf("actual.IsEmpty(): got false, want true")
566 t.Errorf("actual.MatchesAnySet({}): got true, want false")
569 t.Errorf("actual.MatchesEverySet({}, {}): want false, got true")
573 t.Errorf("actual.IsEmpty(): got true, want false")
576 t.Errorf("actual.MatchesAnySet({all expected}): want true, got false")
579 t.Errorf("actual.MatchesEverySet({all expected}, {all expected}): want true, got false")
588 t.Errorf("empty actual.MatchesAnySet({expected}, {not expected}): want false, got true")
592 t.Errorf("actual.MatchesAnySet({expected}, {not expected}): want true, got false")
596 t.Errorf("actual.MatchesAnySet({not expected}): want false, got true")
599 t.Errorf("actual.MatchesEverySet({not expected}): want false, got true")
602 t.Errorf("actual.MatchesEverySet({expected}, {not expected}): want false, got true")
606 t.Errorf("actual.Difference({expected}).IsEmpty(): want true, got false")
609 …t.Errorf("expected == actual.Intersection({expected}): want true, got false (%04x != %04x)", expec…
612 …t.Errorf("actual == actual.Intersection({expected}): want true, got false (%04x != %04x)", actual,…