1//===- LDSymbolTest.cpp ---------------------------------------------------===// 2// 3// The MCLinker Project 4// 5// This file is distributed under the University of Illinois Open Source 6// License. See LICENSE.TXT for details. 7// 8//===----------------------------------------------------------------------===// 9 10#include "mcld/LD/LDSymbol.h" 11#include "LDSymbolTest.h" 12 13using namespace mcld; 14using namespace mcldtest; 15 16// Constructor can do set-up work for all test here. 17LDSymbolTest::LDSymbolTest() { 18} 19 20// Destructor can do clean-up work that doesn't throw exceptions here. 21LDSymbolTest::~LDSymbolTest() { 22} 23 24// SetUp() will be called immediately before each test. 25void LDSymbolTest::SetUp() { 26} 27 28// TearDown() will be called immediately after each test. 29void LDSymbolTest::TearDown() { 30} 31 32//==========================================================================// 33// Testcases 34// 35TEST_F(LDSymbolTest, produce) { 36} 37