umbra/projs/shadow-file-format-test/sff_writer_tests.cpp

25 lines
377 B
C++
Raw Normal View History

2022-06-13 11:37:18 +00:00
#include "pch.h"
//import Shadow.FileFormat;
#include "SFFWriter.h"
2022-06-13 11:37:18 +00:00
/*
2022-06-13 11:37:18 +00:00
std::stringstream streamFrom(std::string str) {
std::stringstream ss;
ss << str;
return ss;
}
TEST(Write_EmptyFile, HasHeader) {
2022-06-13 11:37:18 +00:00
//std::stringstream ss = streamFrom(example_empty);
2022-06-13 11:37:18 +00:00
//auto a = Shadow::SFF::SFFWriter::
//auto assets = a->GetChildByIndex(0);
//EXPECT_EQ(assets, nullptr);
}
*/