package memory import ( "github.com/allegro/bigcache" "reflect" "testing" ) func TestNewBigCache(t *testing.T) { tests := []struct { name string want *bigcache.BigCache }{ // TODO: Add test cases. } for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { if got := NewBigCache(); !reflect.DeepEqual(got, tt.want) { t.Errorf("NewBigCache() = %v, want %v", got, tt.want) } }) } }