/* * HighwayManager_test.cpp * * Created on: Sep 2, 2012 * Author: dklein */ #include #include namespace { class SamplerTest: public ::testing::Test { protected: SamplerTest() { } virtual void SetUp() { } virtual void TearDown() { } virtual ~SamplerTest() { } }; TEST_F(SamplerTest, Example1) { EXPECT_EQ(1, 1); } }