diff options
Diffstat (limited to 'src/models/boil_suites_test.go')
| -rw-r--r-- | src/models/boil_suites_test.go | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/src/models/boil_suites_test.go b/src/models/boil_suites_test.go new file mode 100644 index 0000000..a817084 --- /dev/null +++ b/src/models/boil_suites_test.go @@ -0,0 +1,81 @@ +// Code generated by SQLBoiler 4.16.1 (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. +// This file is meant to be re-generated in place and/or deleted at any time. + +package models + +import "testing" + +// This test suite runs each operation test in parallel. +// Example, if your database has 3 tables, the suite will run: +// table1, table2 and table3 Delete in parallel +// table1, table2 and table3 Insert in parallel, and so forth. +// It does NOT run each operation group in parallel. +// Separating the tests thusly grants avoidance of Postgres deadlocks. +func TestParent(t *testing.T) { + t.Run("Users", testUsers) +} + +func TestDelete(t *testing.T) { + t.Run("Users", testUsersDelete) +} + +func TestQueryDeleteAll(t *testing.T) { + t.Run("Users", testUsersQueryDeleteAll) +} + +func TestSliceDeleteAll(t *testing.T) { + t.Run("Users", testUsersSliceDeleteAll) +} + +func TestExists(t *testing.T) { + t.Run("Users", testUsersExists) +} + +func TestFind(t *testing.T) { + t.Run("Users", testUsersFind) +} + +func TestBind(t *testing.T) { + t.Run("Users", testUsersBind) +} + +func TestOne(t *testing.T) { + t.Run("Users", testUsersOne) +} + +func TestAll(t *testing.T) { + t.Run("Users", testUsersAll) +} + +func TestCount(t *testing.T) { + t.Run("Users", testUsersCount) +} + +func TestHooks(t *testing.T) { + t.Run("Users", testUsersHooks) +} + +func TestInsert(t *testing.T) { + t.Run("Users", testUsersInsert) + t.Run("Users", testUsersInsertWhitelist) +} + +func TestReload(t *testing.T) { + t.Run("Users", testUsersReload) +} + +func TestReloadAll(t *testing.T) { + t.Run("Users", testUsersReloadAll) +} + +func TestSelect(t *testing.T) { + t.Run("Users", testUsersSelect) +} + +func TestUpdate(t *testing.T) { + t.Run("Users", testUsersUpdate) +} + +func TestSliceUpdateAll(t *testing.T) { + t.Run("Users", testUsersSliceUpdateAll) +} |
