(t *testing.T)
| 1398 | } |
| 1399 | |
| 1400 | func TestIncludesOptional(t *testing.T) { |
| 1401 | t.Parallel() |
| 1402 | |
| 1403 | tt := fileContentTest{ |
| 1404 | Dir: "testdata/includes_optional", |
| 1405 | Target: "default", |
| 1406 | TrimSpace: true, |
| 1407 | Files: map[string]string{ |
| 1408 | "called_dep.txt": "called_dep", |
| 1409 | }, |
| 1410 | } |
| 1411 | t.Run("", func(t *testing.T) { |
| 1412 | t.Parallel() |
| 1413 | tt.Run(t) |
| 1414 | }) |
| 1415 | } |
| 1416 | |
| 1417 | func TestIncludesOptionalImplicitFalse(t *testing.T) { |
| 1418 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…