(t *testing.T)
| 20 | ) |
| 21 | |
| 22 | func before_each(t *testing.T) { |
| 23 | // Clean DB |
| 24 | model.DB.Where("1 = 1").Delete(&model.Proof{}) |
| 25 | model.DB.Where("1 = 1").Delete(&model.ProofChain{}) |
| 26 | } |
| 27 | |
| 28 | func TestMain(m *testing.M) { |
| 29 | config.Init("../config/config.test.json") |
no outgoing calls
no test coverage detected