mirror of
https://github.com/safing/portbase
synced 2025-09-04 11:40:23 +00:00
13 lines
155 B
Go
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
|
|
|
|
}
|