9 lines
175 B
C++
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));
|
|
} |