You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
547 B

package gormExample
import "testing"
func TestStdAssocModel(t *testing.T) {
StdAssocModel()
}
func TestAssocAppend(t *testing.T) {
AssocAppend()
}
func TestAssocReplace(t *testing.T) {
AssocReplace()
}
func TestAssocDelete(t *testing.T) {
AssocDelete()
}
func TestAssocFind(t *testing.T) {
AssocFind()
}
func TestAssocSave(t *testing.T) {
AssocSave()
}
func TestAssocPreload(t *testing.T) {
AssocPreload()
}
func TestAssocLevelPreload(t *testing.T) {
AssocLevelPreload()
}
func TestAssocOperate(t *testing.T) {
AssocOperate()
}