···4747 // Get $CWD/testdata easily
4848 test.Data(t) // /Users/you/project/package/testdata
49495050+ // Check against contents of a file (relative to $CWD/testdata)
5151+ // including line ending normalisation
5252+ test.File(t, "expected.txt", "hello\n")
5353+5054 // Just like the good old reflect.DeepEqual, but with a nicer format
5155 test.DeepEqual(t, []string{"hello"}, []string{"world"}) // Fails
5256}