mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 16:10:04 +00:00
Basic parsing for Archive II file
This commit is contained in:
parent
59d06a8632
commit
33c114ee9d
14 changed files with 412 additions and 1 deletions
26
test/source/scwx/wsr88d/rpg/ar2v_file.test.cpp
Normal file
26
test/source/scwx/wsr88d/rpg/ar2v_file.test.cpp
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
#include <scwx/wsr88d/rpg/ar2v_file.hpp>
|
||||
|
||||
#include <fstream>
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
|
||||
namespace scwx
|
||||
{
|
||||
namespace wsr88d
|
||||
{
|
||||
namespace rpg
|
||||
{
|
||||
|
||||
TEST(ar2v_file, klsx)
|
||||
{
|
||||
Ar2vFile file;
|
||||
bool fileValid =
|
||||
file.LoadFile(std::string(SCWX_TEST_DATA_DIR) +
|
||||
"/nexrad/level2/Level2_KLSX_20210527_1757.ar2v");
|
||||
|
||||
EXPECT_EQ(fileValid, true);
|
||||
}
|
||||
|
||||
} // namespace rpg
|
||||
} // namespace wsr88d
|
||||
} // namespace scwx
|
||||
Loading…
Add table
Add a link
Reference in a new issue