github.com/wawandco/oxpecker@v1.5.7-0.20210910201653-5958d4afdd89/lifecycle/test/after_tester.go (about)

     1  package test
     2  
     3  import (
     4  	"context"
     5  
     6  	"github.com/wawandco/oxpecker/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  }