()
| 142 | } |
| 143 | |
| 144 | func (s *PoolsTestSuite) TestListAllPools() { |
| 145 | pools, err := s.Store.ListAllPools(s.adminCtx) |
| 146 | |
| 147 | s.Require().Nil(err) |
| 148 | garmTesting.EqualDBEntityID(s.T(), s.Fixtures.Pools, pools) |
| 149 | } |
| 150 | |
| 151 | func (s *PoolsTestSuite) TestListAllPoolsDBFetchErr() { |
| 152 | s.Fixtures.SQLMock. |
nothing calls this directly
no test coverage detected