19 lines
293 B
Go
19 lines
293 B
Go
// Copyright 2024 Matthew Rich <matthewrich.conf@gmail.com>. All rights reserved.
|
|
package fixtures_test
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func Fixture16bit(t *testing.T) interface{} {
|
|
return 65536
|
|
}
|
|
|
|
func TestFixture(t *testing.T) {
|
|
var f Ft = Fixture16bit
|
|
var t Test {
|
|
|
|
}
|
|
t.RunWith(f,
|
|
}
|