(t *testing.T)
| 49 | } |
| 50 | |
| 51 | func Test_FindTests(t *testing.T) { |
| 52 | s := Suite{TestCases: []runtime.TestCase{ |
| 53 | {Title: "exists"}, |
| 54 | {Title: "another"}, |
| 55 | {Title: "another one"}, |
| 56 | }} |
| 57 | |
| 58 | test, _ := s.FindTests("exists") |
| 59 | assert.Len(t, test, 1) |
| 60 | } |
| 61 | |
| 62 | func Test_FindMultipleTests(t *testing.T) { |
| 63 | s := Suite{TestCases: []runtime.TestCase{ |