(t *testing.T)
| 22 | } |
| 23 | |
| 24 | func TestNotifyPlugin_Name(t *testing.T) { |
| 25 | app := newConfigDotWeb() |
| 26 | //fmt.Println(app.Config.ConfigFilePath) |
| 27 | p := NewDefaultNotifyPlugin(app) |
| 28 | needShow := "NotifyPlugin" |
| 29 | test.Equal(t, needShow, p.Name()) |
| 30 | } |
| 31 | |
| 32 | func TestNotifyPlugin_IsValidate(t *testing.T) { |
| 33 | app := newConfigDotWeb() |
nothing calls this directly
no test coverage detected