blob: a31b16a523baced15d8d9e258a0113132d3e3a21 [file] [log] [blame]
Shih-wei Liao5460a1f2012-03-16 22:41:16 -07001//===- PathTest.h ---------------------------------------------------------===//
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#ifndef PATH_TEST_H
10#define PATH_TEST_H
11
12#include "mcld/Support/Path.h"
13#include <gtest.h>
14
Stephen Hines37b74a32014-11-26 18:48:20 -080015namespace mcldtest {
Shih-wei Liao5460a1f2012-03-16 22:41:16 -070016
17/** \class PathTest
18 * \brief a testcase for mcld::Path and its non-member funtions.
19 *
Stephen Hines551ae4e2014-04-24 14:41:24 -070020 * \see Path
Shih-wei Liao5460a1f2012-03-16 22:41:16 -070021 */
Stephen Hines37b74a32014-11-26 18:48:20 -080022class PathTest : public ::testing::Test {
23 public:
24 // Constructor can do set-up work for all test here.
25 PathTest();
Shih-wei Liao5460a1f2012-03-16 22:41:16 -070026
Stephen Hines37b74a32014-11-26 18:48:20 -080027 // Destructor can do clean-up work that doesn't throw exceptions here.
28 virtual ~PathTest();
Shih-wei Liao5460a1f2012-03-16 22:41:16 -070029
Stephen Hines37b74a32014-11-26 18:48:20 -080030 // SetUp() will be called immediately before each test.
31 virtual void SetUp();
Shih-wei Liao5460a1f2012-03-16 22:41:16 -070032
Stephen Hines37b74a32014-11-26 18:48:20 -080033 // TearDown() will be called immediately after each test.
34 virtual void TearDown();
Shih-wei Liao5460a1f2012-03-16 22:41:16 -070035
Stephen Hines37b74a32014-11-26 18:48:20 -080036 protected:
37 mcld::sys::fs::Path* m_pTestee;
Shih-wei Liao5460a1f2012-03-16 22:41:16 -070038};
39
Stephen Hines37b74a32014-11-26 18:48:20 -080040} // namespace of mcldtest
Shih-wei Liao5460a1f2012-03-16 22:41:16 -070041
42#endif