InitTestMemoryDB initializes an in-memory test database with the default schema.
(t *testing.T)
| 55 | |
| 56 | // InitTestMemoryDB initializes an in-memory test database with the default schema. |
| 57 | func InitTestMemoryDB(t *testing.T) *DB { |
| 58 | return InitTestMemoryDBRaw(t, "") |
| 59 | } |
| 60 | |
| 61 | // InitTestFileDB initializes a file-based test database with the default schema. |
| 62 | func InitTestFileDB(t *testing.T) (*DB, string) { |