| 5 | #include <gtest/gtest.h> |
| 6 | |
| 7 | TEST(VirtioDriverTest, GetEntryNameIsVirtio) { |
| 8 | const auto& entry = VirtioDriver::GetEntry(); |
| 9 | EXPECT_STREQ(entry.name, "virtio"); |
| 10 | } |
| 11 | |
| 12 | TEST(VirtioDriverTest, MatchStaticReturnsFalseWhenNoMmioBase) { |
| 13 | DeviceNode node{}; |
nothing calls this directly
no outgoing calls
no test coverage detected