The is repository contains the code and test suites for the CS300 group project.
Type make all to build and run.
- In general, use Google's Guide for reference.
- Put tests in tests/, with extension .cc
However, write tests in the format:
TEST( <test name>, <testing what?>) {
EXPECT_EQ(1, 1); //Assertion that 1 == 1
}
For format, see: tests/exampleTest.cc
To Install:
Run make get-test-suite to install googletest.
To run:
Run make test to run the tests (only runs tests/exampleTest.cc at the moment).
Verified to work on PSU Linux.