Newer
Older
mbed-os / UNITTESTS / template / test_template.cpp
@Lari-Matias Orjala Lari-Matias Orjala on 27 Aug 2018 243 bytes Add unit testing framework
#include "gtest/gtest.h"
#include "dirname/template.h"

class Testtemplate : public testing::Test {
    virtual void SetUp()
    {
    }

    virtual void TearDown()
    {
    }
};

TEST_F(Testtemplate, constructor)
{
    EXPECT_TRUE(true);
}