Home | History | Annotate | Download | only in unittests
      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 
     12 using namespace mcld;
     13 using namespace mcldtest;
     14 
     15 // Constructor can do set-up work for all test here.
     16 PathSetTest::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.
     22 PathSetTest::~PathSetTest() {
     23   delete m_pTestee;
     24 }
     25 
     26 // SetUp() will be called immediately before each test.
     27 void PathSetTest::SetUp() {
     28 }
     29 
     30 // TearDown() will be called immediately after each test.
     31 void PathSetTest::TearDown() {
     32 }
     33 
     34 //==========================================================================//
     35 // Testcases
     36 //
     37 
     38 TEST_F(PathSetTest, ) {
     39 }
     40