github.com/wawandco/ox@v0.13.6-0.20230809142027-913b3d837f2a/plugins/base/test/after_tester.go (about)

     1  package test
     2  
     3  import (
     4  	"context"
     5  
     6  	"github.com/wawandco/ox/plugins/core"
     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  	core.Plugin
    13  	RunAfterTest(context.Context, string, []string) error
    14  }