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.
20 lines
240 B
20 lines
240 B
2 years ago
|
package gormExample
|
||
|
|
||
|
import "testing"
|
||
|
|
||
|
func TestTXDemo(t *testing.T) {
|
||
|
TXDemo()
|
||
|
}
|
||
|
|
||
|
func TestTXCallback(t *testing.T) {
|
||
|
TXCallback()
|
||
|
}
|
||
|
|
||
|
func TestTXNested(t *testing.T) {
|
||
|
TXNested()
|
||
|
}
|
||
|
|
||
|
func TestTXSavePoint(t *testing.T) {
|
||
|
TXSavePoint()
|
||
|
}
|