Lines Matching defs:string

29 func AssertSame(t *testing.T, message string, expected interface{}, actual interface{}) {
38 func AssertBoolEquals(t *testing.T, message string, expected bool, actual bool) {
47 func AssertIntEquals(t *testing.T, message string, expected int, actual int) {
56 func AssertStringEquals(t *testing.T, message string, expected string, actual string) {
65 func AssertPathRelativeToTopEquals(t *testing.T, message string, expected string, actual Path) {
72 func AssertPathsRelativeToTopEquals(t *testing.T, message string, expected []string, actual Paths) {
79 …rtStringPathRelativeToTopEquals(t *testing.T, message string, config Config, expected string, actu…
86 …tringPathsRelativeToTopEquals(t *testing.T, message string, config Config, expected []string, actu…
94 func AssertErrorMessageEquals(t *testing.T, message string, expected string, actual error) {
106 func AssertTrimmedStringEquals(t *testing.T, message string, expected string, actual string) {
114 func AssertStringDoesContain(t *testing.T, message string, s string, expectedSubstring string) {
123 func AssertStringDoesNotContain(t *testing.T, message string, s string, unexpectedSubstring string)…
133 func AssertStringContainsEquals(t *testing.T, message string, s string, substring string, expected …
143 func AssertStringMatches(t *testing.T, message, s, expectedRex string) {
158 func AssertStringListContains(t *testing.T, message string, list []string, s string) {
167 func AssertStringListDoesNotContain(t *testing.T, message string, list []string, s string) {
177 func AssertStringListContainsEquals(t *testing.T, message string, list []string, s string, expected…
188 func AssertArrayString(t *testing.T, message string, expected, actual []string) {
206 func AssertPathsEndWith(t *testing.T, message string, expected []string, actual []Path) {
222 func AssertDeepEquals(t *testing.T, message string, expected interface{}, actual interface{}) {
231 func AssertPanicMessageContains(t *testing.T, message, expectedMessageContents string, funcThatShou…