(t *testing.T)
| 45 | } |
| 46 | |
| 47 | func TestParseAccountUrl(t *testing.T) { |
| 48 | testCases := []validationTestCase{ |
| 49 | {"myteam.1password.com", true, "myteam.1password.com", ""}, |
| 50 | } |
| 51 | runValidationTests(t, testCases, ParseAccountURL, "ParseAccountUrl") |
| 52 | } |
| 53 | |
| 54 | func TestParseCheckbox(t *testing.T) { |
| 55 | testCases := []validationTestCase{ |
nothing calls this directly
no test coverage detected