mirror of
https://github.com/safing/portbase
synced 2025-09-01 10:09:50 +00:00
13 lines
172 B
Go
13 lines
172 B
Go
package record
|
|
|
|
import "testing"
|
|
|
|
func TestBaseRecord(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
// check model interface compliance
|
|
var m Record
|
|
b := &TestRecord{}
|
|
m = b
|
|
_ = m
|
|
}
|