mp-sfml/test/util_test.cc

8 lines
175 B
C++
Raw Permalink Normal View History

#include "UtilTool.h"
2024-10-08 14:34:52 +08:00
#include "gtest/gtest.h"
2024-09-09 13:20:59 +08:00
#include <iostream>
2024-10-08 14:34:52 +08:00
TEST(UtilTest, CheckIsImage) {
2024-09-09 13:20:59 +08:00
EXPECT_TRUE(UtilTool::CheckFileType("file.jpg") == MediaType::IMAGE);
}