From f5d981ab4d6de03965bcdd28042b78e425b2c3ee Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Wed, 29 Aug 2012 01:42:24 -0700 Subject: [PATCH] scaffold for tests --- weed-fs/src/pkg/topology/topo_test.go | 41 +++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 weed-fs/src/pkg/topology/topo_test.go diff --git a/weed-fs/src/pkg/topology/topo_test.go b/weed-fs/src/pkg/topology/topo_test.go new file mode 100644 index 000000000..92426fb5a --- /dev/null +++ b/weed-fs/src/pkg/topology/topo_test.go @@ -0,0 +1,41 @@ +package topology + +import ( + "testing" +) + +func TestAddVolume(t *testing.T) { + +} + +func TestAddServer(t *testing.T) { + +} + +func TestAddRack(t *testing.T) { + +} + +func TestAddDataCenter(t *testing.T) { + +} + +func TestReserveVolume(t *testing.T) { + +} + +func TestRemoveVolume(t *testing.T) { + +} + +func TestRemoveServer(t *testing.T) { + +} + +func TestRemoveRack(t *testing.T) { + +} + +func TestRemoveDataCenter(t *testing.T) { + +}