16 lines
285 B
Go
16 lines
285 B
Go
// Copyright Earl Warren <contact@earl-warren.org>
|
|
// Copyright Loïc Dachary <loic@dachary.org>
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package f3
|
|
|
|
import (
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
type TestingT interface {
|
|
assert.TestingT
|
|
TempDir() string
|
|
Skip(args ...any)
|
|
FailNow()
|
|
}
|