(t *testing.T)
| 27 | } |
| 28 | |
| 29 | func TestIsInterleave(t *testing.T) { |
| 30 | t.Run("Interleaving Strings test cases", func(t *testing.T) { |
| 31 | for _, tc := range getInterleavingTestCases() { |
| 32 | actual := dynamic.IsInterleave(tc.s1, tc.s2, tc.s3) |
| 33 | if actual != tc.expected { |
| 34 | t.Errorf("IsInterleave(%q, %q, %q) = %v; expected %v", tc.s1, tc.s2, tc.s3, actual, tc.expected) |
| 35 | } |
| 36 | } |
| 37 | }) |
| 38 | } |
nothing calls this directly
no test coverage detected