1/*
2 * Copyright 2014 Haiku, Inc.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef COLLATOR_TEST_H
6#define COLLATOR_TEST_H
7
8
9#include <TestCase.h>
10#include <TestSuite.h>
11
12
13class CollatorTest: public BTestCase {
14public:
15					CollatorTest();
16	virtual			~CollatorTest();
17
18			void	TestSortKeys();
19
20	static	void	AddTests(BTestSuite& suite);
21};
22
23
24#endif
25