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() }