| 33 | }; |
| 34 | |
| 35 | TEST_F(FileFormatFactoryTests, CreateCoff_istream) |
| 36 | { |
| 37 | std::stringstream stream; |
| 38 | stream << std::string(coffBytes.begin(), coffBytes.end()); |
| 39 | EXPECT_TRUE(dynamic_cast<CoffFormat*>(createFileFormat(stream).get())); |
| 40 | |
| 41 | } |
| 42 | |
| 43 | TEST_F(FileFormatFactoryTests, CreateCoff_data) |
| 44 | { |