(t *testing.T)
| 69 | } |
| 70 | |
| 71 | func TestEmptyStore(t *testing.T) { |
| 72 | a := assertions.New(t) |
| 73 | |
| 74 | store := frequencyplans.NewStore(fetch.NewMemFetcher(map[string][]byte{})) |
| 75 | |
| 76 | _, err := store.GetAllIDs() |
| 77 | a.So(err, should.NotBeNil) |
| 78 | |
| 79 | _, err = store.GetByID("EU_863_870") |
| 80 | a.So(err, should.NotBeNil) |
| 81 | } |
| 82 | |
| 83 | func TestStore(t *testing.T) { |
| 84 | a := assertions.New(t) |
nothing calls this directly
no test coverage detected