(t *testing.T)
| 22 | } |
| 23 | |
| 24 | func TestMaxCoins(t *testing.T) { |
| 25 | t.Run("Burst Balloons test cases", func(t *testing.T) { |
| 26 | for _, tc := range getBurstBalloonsTestCases() { |
| 27 | actual := dynamic.MaxCoins(tc.nums) |
| 28 | if actual != tc.expected { |
| 29 | t.Errorf("MaxCoins(%v) = %d; expected %d", tc.nums, actual, tc.expected) |
| 30 | } |
| 31 | } |
| 32 | }) |
| 33 | } |
nothing calls this directly
no test coverage detected