()
| 108 | } |
| 109 | |
| 110 | func (s *CompatSuite) TestEnableDisable() { |
| 111 | inst := s.p.NewPluginInstance(UserContext{ |
| 112 | ID: 5, |
| 113 | Name: "test5", |
| 114 | }) |
| 115 | assert.Nil(s.T(), inst.Enable()) |
| 116 | assert.Nil(s.T(), inst.Disable()) |
| 117 | } |
| 118 | |
| 119 | func (s *CompatSuite) TestGetDisplay() { |
| 120 | inst := s.p.NewPluginInstance(UserContext{ |
nothing calls this directly
no test coverage detected