Lines Matching defs:string

28 func AssertSame(t *testing.T, message string, expected interface{}, actual interface{}) {
37 func AssertBoolEquals(t *testing.T, message string, expected bool, actual bool) {
46 func AssertIntEquals(t *testing.T, message string, expected int, actual int) {
55 func AssertStringEquals(t *testing.T, message string, expected string, actual string) {
64 func AssertPathRelativeToTopEquals(t *testing.T, message string, expected string, actual Path) {
71 func AssertPathsRelativeToTopEquals(t *testing.T, message string, expected []string, actual Paths) {
78 …rtStringPathRelativeToTopEquals(t *testing.T, message string, config Config, expected string, actu…
85 …tringPathsRelativeToTopEquals(t *testing.T, message string, config Config, expected []string, actu…
93 func AssertErrorMessageEquals(t *testing.T, message string, expected string, actual error) {
105 func AssertTrimmedStringEquals(t *testing.T, message string, expected string, actual string) {
113 func AssertStringDoesContain(t *testing.T, message string, s string, expectedSubstring string) {
122 func AssertStringDoesNotContain(t *testing.T, message string, s string, unexpectedSubstring string)…
132 func AssertStringContainsEquals(t *testing.T, message string, s string, substring string, expected …
143 func AssertStringListContains(t *testing.T, message string, list []string, s string) {
152 func AssertStringListDoesNotContain(t *testing.T, message string, list []string, s string) {
162 func AssertStringListContainsEquals(t *testing.T, message string, list []string, s string, expected…
172 func AssertArrayString(t *testing.T, message string, expected, actual []string) {
190 func AssertDeepEquals(t *testing.T, message string, expected interface{}, actual interface{}) {
199 func AssertPanicMessageContains(t *testing.T, message, expectedMessageContents string, funcThatShou…