blob: b5f7b21b3604f54ba242e08cdd4804669a86e68c [file] [log] [blame]
Shih-wei Liao5460a1f2012-03-16 22:41:16 -07001//===- 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
Shih-wei Liao5460a1f2012-03-16 22:41:16 -070015// Constructor can do set-up work for all test here.
Stephen Hines37b74a32014-11-26 18:48:20 -080016PathSetTest::PathSetTest() {
17 // create testee. modify it if need
18 m_pTestee = new PathSet();
Shih-wei Liao5460a1f2012-03-16 22:41:16 -070019}
20
21// Destructor can do clean-up work that doesn't throw exceptions here.
Stephen Hines37b74a32014-11-26 18:48:20 -080022PathSetTest::~PathSetTest() {
23 delete m_pTestee;
Shih-wei Liao5460a1f2012-03-16 22:41:16 -070024}
25
26// SetUp() will be called immediately before each test.
Stephen Hines37b74a32014-11-26 18:48:20 -080027void PathSetTest::SetUp() {
Shih-wei Liao5460a1f2012-03-16 22:41:16 -070028}
29
30// TearDown() will be called immediately after each test.
Stephen Hines37b74a32014-11-26 18:48:20 -080031void PathSetTest::TearDown() {
Shih-wei Liao5460a1f2012-03-16 22:41:16 -070032}
33
34//==========================================================================//
35// Testcases
36//
37
Stephen Hines37b74a32014-11-26 18:48:20 -080038TEST_F(PathSetTest, ) {
Shih-wei Liao5460a1f2012-03-16 22:41:16 -070039}