Merge "Add AssertIntEquals" am: a8c065522d am: 308053d678

Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1643062

Change-Id: I2326d1d0afa34d80f8c9f3782d7b78eea3042c3c
This commit is contained in:
Paul Duffin
2021-03-18 09:13:26 +00:00
committed by Automerger Merge Worker

View File

@@ -31,6 +31,15 @@ func AssertBoolEquals(t *testing.T, message string, expected bool, actual bool)
}
}
// AssertIntEquals checks if the expected and actual values are equal and if they are not then it
// reports an error prefixed with the supplied message and including a reason for why it failed.
func AssertIntEquals(t *testing.T, message string, expected int, actual int) {
t.Helper()
if actual != expected {
t.Errorf("%s: expected %d, actual %d", message, expected, actual)
}
}
// AssertStringEquals checks if the expected and actual values are equal and if they are not then
// it reports an error prefixed with the supplied message and including a reason for why it failed.
func AssertStringEquals(t *testing.T, message string, expected string, actual string) {