(t *testing.T)
| 129 | } |
| 130 | |
| 131 | func TestFileTreeNoAttributes(t *testing.T) { |
| 132 | vm := initializeTestViewModel(t) |
| 133 | |
| 134 | width, height := 100, 1000 |
| 135 | vm.Setup(0, height) |
| 136 | vm.ShowAttributes = false |
| 137 | |
| 138 | runTestCase(t, vm, width, height, nil) |
| 139 | } |
| 140 | |
| 141 | func TestFileTreeRestrictedHeight(t *testing.T) { |
| 142 | vm := initializeTestViewModel(t) |
nothing calls this directly
no test coverage detected