1#-------------------------------------------------------------------------
2# CxxTest: A lightweight C++ unit testing library.
3# Copyright (c) 2008 Sandia Corporation.
4# This software is distributed under the LGPL License v3
5# For more information, see the COPYING file in the top CxxTest directory.
6# Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
7# the U.S. Government retains certain rights in this software.
8#-------------------------------------------------------------------------
9
10"""cxxtest: A Python package that supports the CxxTest test framework for C/C++.
11
12.. _CxxTest: http://cxxtest.com/
13
14CxxTest is a unit testing framework for C++ that is similar in
15spirit to JUnit, CppUnit, and xUnit. CxxTest is easy to use because
16it does not require precompiling a CxxTest testing library, it
17employs no advanced features of C++ (e.g. RTTI) and it supports a
18very flexible form of test discovery.
19
20The cxxtest Python package includes capabilities for parsing C/C++ source files and generating
21CxxTest drivers.
22"""
23
24from cxxtest.__release__ import __version__, __date__
25__date__
26__version__
27
28__maintainer__ = "William E. Hart"
29__maintainer_email__ = "whart222@gmail.com"
30__license__ = "LGPL"
31__url__ = "http://cxxtest.com"
32
33from cxxtest.cxxtestgen import *
34