| 55 | |
| 56 | |
| 57 | TEST_F(FsTest, SupportedFS) |
| 58 | { |
| 59 | EXPECT_SOME_TRUE(fs::supported("proc")); |
| 60 | EXPECT_SOME_TRUE(fs::supported("sysfs")); |
| 61 | |
| 62 | EXPECT_SOME_FALSE(fs::supported("nonexistingfs")); |
| 63 | } |
| 64 | |
| 65 | |
| 66 | TEST_F(FsTest, Type) |
nothing calls this directly
no test coverage detected