2016-01-23 16:42:26 +00:00
|
|
|
// DO NOT EDIT!
|
|
|
|
// generated at 2016-23-01 17:41:47 +0100 CET
|
2015-11-22 15:12:00 +00:00
|
|
|
package backend_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2016-01-23 16:42:26 +00:00
|
|
|
"github.com/restic/restic/backend/test"
|
2015-11-22 15:12:00 +00:00
|
|
|
)
|
|
|
|
|
2016-01-23 16:42:26 +00:00
|
|
|
func TestMemBackendCreate(t *testing.T) { test.Create(t) }
|
|
|
|
func TestMemBackendOpen(t *testing.T) { test.Open(t) }
|
|
|
|
func TestMemBackendLocation(t *testing.T) { test.Location(t) }
|
|
|
|
func TestMemBackendConfig(t *testing.T) { test.Config(t) }
|
|
|
|
func TestMemBackendGetReader(t *testing.T) { test.GetReader(t) }
|
|
|
|
func TestMemBackendLoad(t *testing.T) { test.Load(t) }
|
|
|
|
func TestMemBackendWrite(t *testing.T) { test.Write(t) }
|
|
|
|
func TestMemBackendGeneric(t *testing.T) { test.Generic(t) }
|
|
|
|
func TestMemBackendDelete(t *testing.T) { test.Delete(t) }
|
|
|
|
func TestMemBackendCleanup(t *testing.T) { test.Cleanup(t) }
|