You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
939 B
37 lines
939 B
7 months ago
|
//===- LDSymbolTest.cpp ---------------------------------------------------===//
|
||
|
//
|
||
|
// The MCLinker Project
|
||
|
//
|
||
|
// This file is distributed under the University of Illinois Open Source
|
||
|
// License. See LICENSE.TXT for details.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
#include "mcld/LD/LDSymbol.h"
|
||
|
#include "LDSymbolTest.h"
|
||
|
|
||
|
using namespace mcld;
|
||
|
using namespace mcldtest;
|
||
|
|
||
|
// Constructor can do set-up work for all test here.
|
||
|
LDSymbolTest::LDSymbolTest() {
|
||
|
}
|
||
|
|
||
|
// Destructor can do clean-up work that doesn't throw exceptions here.
|
||
|
LDSymbolTest::~LDSymbolTest() {
|
||
|
}
|
||
|
|
||
|
// SetUp() will be called immediately before each test.
|
||
|
void LDSymbolTest::SetUp() {
|
||
|
}
|
||
|
|
||
|
// TearDown() will be called immediately after each test.
|
||
|
void LDSymbolTest::TearDown() {
|
||
|
}
|
||
|
|
||
|
//==========================================================================//
|
||
|
// Testcases
|
||
|
//
|
||
|
TEST_F(LDSymbolTest, produce) {
|
||
|
}
|