| 39 | // --- isSVG detection --- |
| 40 | |
| 41 | TEST(SVGImage, detectsSVGAfterWhitespace) { |
| 42 | auto svg = bytesFromString(" \n<svg width=\"12\" height=\"10\" xmlns=\"http://www.w3.org/2000/svg\"></svg>"); |
| 43 | |
| 44 | ASSERT_TRUE(Image::isSVG(svg)); |
| 45 | } |
| 46 | |
| 47 | TEST(SVGImage, detectsXMLPreamble) { |
| 48 | auto svg = bytesFromString("<?xml version=\"1.0\" encoding=\"UTF-8\"?><svg></svg>"); |
nothing calls this directly
no test coverage detected