comwrite.cpp 348 B

1234567891011121314
  1. #include <gmock/gmock.h>
  2. #include <gtest/gtest.h>
  3. #include "dcc.h"
  4. TEST(CowriteTest, HandlesZeroInput) {
  5. EXPECT_EQ(1, 1);
  6. }
  7. int main(int argc, char** argv) {
  8. // The following line must be executed to initialize Google Mock
  9. // (and Google Test) before running the tests.
  10. ::testing::InitGoogleMock(&argc, argv);
  11. return RUN_ALL_TESTS();
  12. }