| 14 | using namespace scsi_defs; |
| 15 | |
| 16 | TEST(AbstractControllerTest, AllocateCmd) |
| 17 | { |
| 18 | MockAbstractController controller; |
| 19 | |
| 20 | EXPECT_EQ(16, controller.GetCmd().size()); |
| 21 | controller.AllocateCmd(1234); |
| 22 | EXPECT_EQ(1234, controller.GetCmd().size()); |
| 23 | } |
| 24 | |
| 25 | TEST(AbstractControllerTest, AllocateBuffer) |
| 26 | { |
nothing calls this directly
no test coverage detected