(t *testing.T)
| 49 | } |
| 50 | |
| 51 | func TestContains_EmptySlice(t *testing.T) { |
| 52 | slice := []string{} |
| 53 | assert.False(t, contains(slice, "a")) |
| 54 | } |
| 55 | |
| 56 | func TestCreateBalance_Success(t *testing.T) { |
| 57 | db, mock, err := sqlmock.New() |
nothing calls this directly
no test coverage detected