File: mem_test.go

package info (click to toggle)
golang-golang-x-mod 0.30.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 976 kB
  • sloc: sh: 6; makefile: 6
file content (14 lines) | stat: -rw-r--r-- 290 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2019 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package storage

import (
	"context"
	"testing"
)

func TestMem(t *testing.T) {
	TestStorage(t, context.Background(), new(Mem))
}