(t *testing.T)
| 27 | } |
| 28 | |
| 29 | func TestTilingProblem(t *testing.T) { |
| 30 | t.Run("Tiling Problem test cases", func(t *testing.T) { |
| 31 | for _, tc := range getTilingProblemTestCases() { |
| 32 | actual := dynamic.TilingProblem(tc.n) |
| 33 | if actual != tc.expected { |
| 34 | t.Errorf("TilingProblem(%d) = %d; expected %d", tc.n, actual, tc.expected) |
| 35 | } |
| 36 | } |
| 37 | }) |
| 38 | } |
nothing calls this directly
no test coverage detected