mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
scaffold for tests
This commit is contained in:
parent
317e12644a
commit
f5d981ab4d
41
weed-fs/src/pkg/topology/topo_test.go
Normal file
41
weed-fs/src/pkg/topology/topo_test.go
Normal file
|
@ -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) {
|
||||
|
||||
}
|
Loading…
Reference in a new issue