github.com/safing/portbase@v0.19.5/database/record/base_test.go (about)

     1  package record
     2  
     3  import "testing"
     4  
     5  func TestBaseRecord(t *testing.T) {
     6  	t.Parallel()
     7  
     8  	// check model interface compliance
     9  	var m Record
    10  	b := &TestRecord{}
    11  	m = b
    12  	_ = m
    13  }