Logo white

Peter M. Groen / CppLinuxSerial

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • CppLinuxSerial
  • test
  • unit
  • BasicTests.cpp
  • Removed api folder. Added CMakeLists.txt files for src. Added unit test folder.
    4de88caa
    Geoffrey Hunter authored
    2017-11-24 09:44:34 -0800  
    Browse Code ยป
BasicTests.cpp 354 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
#include "gtest/gtest.h"

#include "CppLinuxSerial/SerialPort.hpp"

using namespace mn::CppLinuxSerial;

namespace {

    class BasicTest : public ::testing::Test {
    protected:

        BasicTest() {
        }

        virtual ~BasicTest() {
        }
    };

    TEST_F(BasicTest, SimplePacket) {
        EXPECT_EQ(true, true);
    }

}  // namespace