safing-portbase/database/model/base_test.go
2018-09-05 17:05:51 +02:00

13 lines
155 B
Go

package model
import "testing"
func TestBaseModel(t *testing.T) {
// check model interface compliance
var m Model
b := &TestModel{}
m = b
_ = m
}