test(tests/poly): added very basic polytrope test suite
Currently only tests default constructor
This commit is contained in:
9
tests/poly/polyTest.cpp
Normal file
9
tests/poly/polyTest.cpp
Normal file
@@ -0,0 +1,9 @@
|
||||
#include <gtest/gtest.h>
|
||||
|
||||
#include "polySolver.h"
|
||||
|
||||
class polyTest : public ::testing::Test {};
|
||||
|
||||
TEST_F(polyTest, DefaultConstructor) {
|
||||
EXPECT_NO_THROW(PolySolver(1, 1));
|
||||
}
|
||||
Reference in New Issue
Block a user