1/*
2 * Copyright 2017, Andrew Lindesay <apl@lindesay.co.nz>
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef DUMP_EXPORT_REPOSITORY_JSON_LISTENER_TEST_H
6#define DUMP_EXPORT_REPOSITORY_JSON_LISTENER_TEST_H
7
8
9#include <TestCase.h>
10#include <TestSuite.h>
11
12
13class DumpExportRepositoryJsonListenerTest : public CppUnit::TestCase {
14public:
15								DumpExportRepositoryJsonListenerTest();
16	virtual						~DumpExportRepositoryJsonListenerTest();
17
18			void				TestSingle();
19			void				TestBulkContainer();
20
21	static	void				AddTests(BTestSuite& suite);
22
23};
24
25
26#endif	// DUMP_EXPORT_REPOSITORY_JSON_LISTENER_TEST_H
27