File: test_first.cpp

package info (click to toggle)
libmusicbrainz3 3.0.1-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 848 kB
  • ctags: 977
  • sloc: cpp: 7,302; xml: 882; ansic: 455; makefile: 10
file content (18 lines) | stat: -rw-r--r-- 276 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <cppunit/extensions/HelperMacros.h>

class First : public CppUnit::TestFixture
{
	CPPUNIT_TEST_SUITE(First);
	CPPUNIT_TEST(testRun);
	CPPUNIT_TEST_SUITE_END();
	
protected:

	void testRun()
	{
		CPPUNIT_ASSERT(true);
	}
	
};

CPPUNIT_TEST_SUITE_REGISTRATION(First);