1//===- PathSetTest.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#include "mcld/Support/PathSet.h"
10#include "PathSetTest.h"
11
12using namespace mcld;
13using namespace mcldtest;
14
15
16// Constructor can do set-up work for all test here.
17PathSetTest::PathSetTest()
18{
19	// create testee. modify it if need
20	m_pTestee = new PathSet();
21}
22
23// Destructor can do clean-up work that doesn't throw exceptions here.
24PathSetTest::~PathSetTest()
25{
26	delete m_pTestee;
27}
28
29// SetUp() will be called immediately before each test.
30void PathSetTest::SetUp()
31{
32}
33
34// TearDown() will be called immediately after each test.
35void PathSetTest::TearDown()
36{
37}
38
39//==========================================================================//
40// Testcases
41//
42
43TEST_F( PathSetTest, ) {
44}
45
46