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// Constructor can do set-up work for all test here.
16PathSetTest::PathSetTest() {
17  // create testee. modify it if need
18  m_pTestee = new PathSet();
19}
20
21// Destructor can do clean-up work that doesn't throw exceptions here.
22PathSetTest::~PathSetTest() {
23  delete m_pTestee;
24}
25
26// SetUp() will be called immediately before each test.
27void PathSetTest::SetUp() {
28}
29
30// TearDown() will be called immediately after each test.
31void PathSetTest::TearDown() {
32}
33
34//==========================================================================//
35// Testcases
36//
37
38TEST_F(PathSetTest, ) {
39}
40