mirror of https://github.com/ARMmbed/mbed-os.git
18 lines
243 B
C++
18 lines
243 B
C++
|
#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);
|
||
|
}
|