diff --git a/test/SConscript b/test/SConscript deleted file mode 100644 index 2f3afcc..0000000 --- a/test/SConscript +++ /dev/null @@ -1,30 +0,0 @@ -# SConscript -# vim: set ft=python: -# -# Eryn Wells - -import os.path - -Import('env') - - -subdirs = [ - # TODO: Put subdirectories here. -] - -for d in subdirs: - env.SConscript(os.path.join(d, 'SConscript'), {'env': env}) - - -files = [ - # TODO: Put files here. - 'main.cc', -] - -objs = [] -for f in files: - objs.append(env.Object(f)) - -# TODO: Add the library target for the package to test to LIBS. -test = env.Program('test', objs, LIBS=['gtest']) -Return('test') diff --git a/test/main.cc b/test/main.cc deleted file mode 100644 index 76cfc21..0000000 --- a/test/main.cc +++ /dev/null @@ -1,16 +0,0 @@ -/* main.cc - * Eryn Wells > - */ - -/** Basic driver for unit tests. */ - -#include "gtest/gtest.h" - - -int -main(int argc, - char *argv[]) -{ - ::testing::InitGoogleTest(&argc, argv); - return RUN_ALL_TESTS(); -}