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.
36 lines
468 B
36 lines
468 B
package gormExample
|
|
|
|
import "testing"
|
|
|
|
func TestOperatorType(t *testing.T) {
|
|
OperatorType()
|
|
}
|
|
|
|
func TestCreateBasic(t *testing.T) {
|
|
CreateBasic()
|
|
}
|
|
|
|
func TestCreateMulti(t *testing.T) {
|
|
CreateMulti()
|
|
}
|
|
|
|
func TestCreateBatch(t *testing.T) {
|
|
CreateBatch()
|
|
}
|
|
|
|
func TestUpSert(t *testing.T) {
|
|
UpSert()
|
|
}
|
|
|
|
func TestDefaultValue(t *testing.T) {
|
|
DefaultValue()
|
|
}
|
|
|
|
func TestSelectOmit(t *testing.T) {
|
|
SelectOmit()
|
|
}
|
|
|
|
func TestCreateHook(t *testing.T) {
|
|
CreateHook()
|
|
}
|