mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-10 06:49:28 -05:00
test: add unit test for ImageIPakPostProcessor
This commit is contained in:
@ -2,6 +2,7 @@
|
||||
|
||||
#include "SearchPath/IOutputPath.h"
|
||||
|
||||
#include <cstdint>
|
||||
#include <sstream>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
@ -10,10 +11,10 @@ class MockOutputFile
|
||||
{
|
||||
public:
|
||||
std::string m_name;
|
||||
std::string m_data;
|
||||
std::vector<std::uint8_t> m_data;
|
||||
|
||||
MockOutputFile();
|
||||
MockOutputFile(std::string name, std::string data);
|
||||
MockOutputFile(std::string name, std::vector<std::uint8_t> data);
|
||||
};
|
||||
|
||||
class MockOutputPath final : public IOutputPath
|
||||
|
Reference in New Issue
Block a user