1/*
2 * Copyright 2012, Axel Dörfler, axeld@pinc-software.de.
3 * Distributed under the terms of the MIT License.
4 */
5
6
7#include <TestSuite.h>
8#include <TestSuiteAddon.h>
9
10#include "NaturalCompareTest.h"
11
12
13BTestSuite*
14getTestSuite()
15{
16	BTestSuite* suite = new BTestSuite("Shared");
17
18	NaturalCompareTest::AddTests(*suite);
19
20	return suite;
21}
22