• Home
  • Raw
  • Download

Lines Matching defs:string

29 func AssertSame(t *testing.T, message string, expected interface{}, actual interface{}) {
55 func AssertBoolEquals(t *testing.T, message string, expected bool, actual bool) {
64 func AssertIntEquals(t *testing.T, message string, expected int, actual int) {
73 func AssertStringEquals(t *testing.T, message string, expected string, actual string) {
82 func AssertPathRelativeToTopEquals(t *testing.T, message string, expected string, actual Path) {
89 func AssertPathsRelativeToTopEquals(t *testing.T, message string, expected []string, actual Paths) {
96 …rtStringPathRelativeToTopEquals(t *testing.T, message string, config Config, expected string, actu…
103 …tringPathsRelativeToTopEquals(t *testing.T, message string, config Config, expected []string, actu…
111 func AssertErrorMessageEquals(t *testing.T, message string, expected string, actual error) {
123 func AssertTrimmedStringEquals(t *testing.T, message string, expected string, actual string) {
131 func AssertStringDoesContain(t *testing.T, message string, s string, expectedSubstring string) {
140 func AssertStringDoesNotContain(t *testing.T, message string, s string, unexpectedSubstring string)…
150 func AssertStringContainsEquals(t *testing.T, message string, s string, substring string, expected …
160 func AssertStringMatches(t *testing.T, message, s, expectedRex string) {
175 func AssertStringListContains(t *testing.T, message string, list []string, s string) {
184 func AssertStringListDoesNotContain(t *testing.T, message string, list []string, s string) {
194 func AssertStringListContainsEquals(t *testing.T, message string, list []string, s string, expected…
205 func AssertArrayString(t *testing.T, message string, expected, actual []string) {
223 func AssertPathsEndWith(t *testing.T, message string, expected []string, actual []Path) {
239 func AssertDeepEquals(t *testing.T, message string, expected interface{}, actual interface{}) {
248 func AssertPanicMessageContains(t *testing.T, message, expectedMessageContents string, funcThatShou…