(t *testing.T)
| 7 | ) |
| 8 | |
| 9 | func TestEngine(t *testing.T) { |
| 10 | engine := NewEngine() |
| 11 | defer engine.Close() |
| 12 | NewEngineWithConfig(NewConfig()) |
| 13 | engine.IsPulley() |
| 14 | } |
| 15 | |
| 16 | func TestEngineInvalidatesConfig(t *testing.T) { |
| 17 | config := NewConfig() |
nothing calls this directly
no test coverage detected
searching dependent graphs…