github.com/wawandco/oxplugins@v0.7.11/lifecycle/test/after_tester.go (about) 1 package test 2 3 import ( 4 "context" 5 6 "github.com/wawandco/oxplugins/plugins" 7 ) 8 9 // AfterTester is suited for things that need to run after the tests 10 // cleanup and organization things, maybe reporting or collecting metrics. 11 type AfterTester interface { 12 plugins.Plugin 13 RunAfterTest(context.Context, string, []string) error 14 }