memory_test.go 159 B

1234567891011121314
  1. package ezdb
  2. import "testing"
  3. func TestMemory(t *testing.T) {
  4. c := Memory[*Student](nil)
  5. fixture := &CollectionTest{
  6. C: c,
  7. T: t,
  8. }
  9. fixture.Run()
  10. }