Stub for placefile test

This commit is contained in:
Dan Paulat 2023-07-17 22:03:14 -05:00
parent fed94e0b7f
commit 207cc1e302
3 changed files with 25 additions and 1 deletions

View file

@ -0,0 +1,21 @@
#include <scwx/gr/placefile.hpp>
#include <gtest/gtest.h>
namespace scwx
{
namespace gr
{
TEST(PlacefileTest, OldExample)
{
std::string filename(std::string(SCWX_TEST_DATA_DIR) +
"/gr/placefiles/placefile-old-example.txt");
std::shared_ptr<Placefile> ct = Placefile::Load(filename);
EXPECT_EQ(true, true);
}
} // namespace gr
} // namespace scwx