Files
SERiF/tests/poly/polyTest.cpp

9 lines
175 B
C++
Raw Normal View History

#include <gtest/gtest.h>
#include "polySolver.h"
class polyTest : public ::testing::Test {};
TEST_F(polyTest, DefaultConstructor) {
EXPECT_NO_THROW(PolySolver(1, 1));
}