VOXELFORMAT: added yet another qef file as test

master
Martin Gerhardy 2021-04-15 22:56:02 +02:00
parent 13cfca07f4
commit e761238af1
3 changed files with 1658 additions and 0 deletions

1651
data/tests/testload.qef Normal file

File diff suppressed because it is too large Load Diff

View File

@ -44,6 +44,7 @@ set(TEST_FILES
tests/qubicle.qb
tests/qubicle.qbt
tests/qubicle.qef
tests/testload.qef
tests/aceofspades.vxl
tests/chronovox-studio.csm
tests/cc.vxl

View File

@ -17,6 +17,12 @@ TEST_F(QEFFormatTest, testLoad) {
ASSERT_NE(nullptr, volume) << "Could not load qef file";
}
TEST_F(QEFFormatTest, testLoad2) {
QEFFormat f;
std::unique_ptr<RawVolume> volume(load("testload.qef", f));
ASSERT_NE(nullptr, volume) << "Could not load qef file";
}
TEST_F(QEFFormatTest, testLoadRGB) {
QEFFormat f;
std::unique_ptr<RawVolume> volume(load("rgb.qef", f));