Files
SERiF/tests/poly/polyTest.cpp
2025-02-19 14:36:22 -05:00

9 lines
175 B
C++

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