2024-05-08 20:28:36 +00:00
|
|
|
// Copyright 2024 Matthew Rich <matthewrich.conf@gmail.com>. All rights reserved.
|
|
|
|
package fixtures_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Fixture16bit(t *testing.T) interface{} {
|
|
|
|
return 65536
|
|
|
|
}
|
|
|
|
|
2024-05-08 21:32:31 +00:00
|
|
|
/*
|
2024-05-08 20:28:36 +00:00
|
|
|
func TestFixture(t *testing.T) {
|
|
|
|
var f Ft = Fixture16bit
|
|
|
|
var t Test {
|
|
|
|
|
|
|
|
}
|
|
|
|
t.RunWith(f,
|
|
|
|
}
|
2024-05-08 21:32:31 +00:00
|
|
|
*/
|