github.com/filecoin-project/specs-actors/v4@v4.0.2/actors/migration/nv10/test/util_test.go (about)

     1  package test_test
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/filecoin-project/go-state-types/rt"
     7  )
     8  
     9  type TestLogger struct {
    10  	TB testing.TB
    11  }
    12  
    13  func (t TestLogger) Log(_ rt.LogLevel, msg string, args ...interface{}) {
    14  	t.TB.Logf(msg, args...)
    15  }