-
Jan Trávníček authoredJan Trávníček authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
ArrayTest.h 325 B
#ifndef ARRAY_TEST_H_
#define ARRAY_TEST_H_
#include <cppunit/extensions/HelperMacros.h>
class ArrayTest : public CppUnit::TestFixture
{
CPPUNIT_TEST_SUITE( ArrayTest );
CPPUNIT_TEST( basicTest );
CPPUNIT_TEST_SUITE_END();
public:
void setUp();
void tearDown();
void basicTest();
};
#endif // ARRAY_TEST_H_