1/*
2 * Copyright 2017, 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 "KPathTest.h"
11
12
13BTestSuite*
14getTestSuite()
15{
16	BTestSuite* suite = new BTestSuite("KernelFS");
17
18	KPathTest::AddTests(*suite);
19
20	return suite;
21}
22