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.
32 lines
358 B
32 lines
358 B
package gormExample
|
|
|
|
import "testing"
|
|
|
|
func TestBasicUsage(t *testing.T) {
|
|
BasicUsage()
|
|
}
|
|
|
|
func TestCreate(t *testing.T) {
|
|
Create()
|
|
}
|
|
|
|
func TestRetrieve(t *testing.T) {
|
|
Retrieve(1)
|
|
}
|
|
|
|
func TestUpdate(t *testing.T) {
|
|
Update()
|
|
}
|
|
|
|
func TestDelete(t *testing.T) {
|
|
Delete()
|
|
}
|
|
|
|
func TestDebug(t *testing.T) {
|
|
Debug()
|
|
}
|
|
|
|
func TestLog(t *testing.T) {
|
|
Log()
|
|
}
|