github.com/mdaxf/iac@v0.0.0-20240519030858-58a061660378/engine/function/TableInsertFuncs_test.go (about) 1 package funcs 2 3 import "testing" 4 5 func TestTableInsertFuncs_Execute(t *testing.T) { 6 type args struct { 7 f *Funcs 8 } 9 tests := []struct { 10 name string 11 cf *TableInsertFuncs 12 args args 13 }{ 14 // TODO: Add test cases. 15 } 16 for _, tt := range tests { 17 t.Run(tt.name, func(t *testing.T) { 18 tt.cf.Execute(tt.args.f) 19 }) 20 } 21 }