(t *testing.T)
| 42 | } |
| 43 | |
| 44 | func TestParenthesis(t *testing.T) { |
| 45 | for _, tc := range parenthesisTestCases { |
| 46 | t.Run(tc.name, func(t *testing.T) { |
| 47 | actual := Parenthesis(tc.text) |
| 48 | if actual != tc.expected { |
| 49 | t.Errorf("Expected %t value from test %s with input %s\n", tc.expected, tc.name, tc.text) |
| 50 | } |
| 51 | }) |
| 52 | } |
| 53 | } |
nothing calls this directly
no test coverage detected