(t *testing.T)
| 2800 | } |
| 2801 | |
| 2802 | func TestSingleCmdDep(t *testing.T) { |
| 2803 | t.Parallel() |
| 2804 | |
| 2805 | tt := fileContentTest{ |
| 2806 | Dir: "testdata/single_cmd_dep", |
| 2807 | Target: "foo", |
| 2808 | Files: map[string]string{ |
| 2809 | "foo.txt": "foo\n", |
| 2810 | "bar.txt": "bar\n", |
| 2811 | }, |
| 2812 | } |
| 2813 | t.Run("", func(t *testing.T) { |
| 2814 | t.Parallel() |
| 2815 | tt.Run(t) |
| 2816 | }) |
| 2817 | } |
| 2818 | |
| 2819 | func TestSilence(t *testing.T) { |
| 2820 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…