tdd set up

master
bel 2020-04-13 02:49:08 +00:00
parent 14692392e2
commit ddba8ff6a1
4 changed files with 42 additions and 0 deletions

11
storage/account_test.go Normal file
View File

@ -0,0 +1,11 @@
package storage
import "testing"
func TestAccounts(t *testing.T) {
t.Fatal("not impl")
}
func TestPrimaryAccounts(t *testing.T) {
t.Fatal("not impl")
}

11
storage/balance_test.go Normal file
View File

@ -0,0 +1,11 @@
package storage
import "testing"
func TestCurrentBalances(t *testing.T) {
t.Fatal("not impl")
}
func TestBalancesOverTime(t *testing.T) {
t.Fatal("not impl")
}

13
storage/storage_test.go Normal file
View File

@ -0,0 +1,13 @@
package storage
import "testing"
func testStorage(t *testing.T) (*Storage, func()) {
m, can := testMongoNew(t)
return &Storage{m}, can
}
func TestStorage(t *testing.T) {
_, can := testStorage(t)
can()
}

View File

@ -0,0 +1,7 @@
package storage
import "testing"
func TestTransactions(t *testing.T) {
t.Fatal("not impl")
}