xref: /haiku/src/tests/system/libroot/posix/LibRootPosix.cpp (revision 44b874666af6b25da6311e5a1c506ee3761f4268)
1 /*
2  * Copyright 2017, Haiku, Inc. All Rights Reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  * Andrew Aldridge, i80and@foxquill.com
7  */
8 
9 
10 #include <TestSuite.h>
11 #include <TestSuiteAddon.h>
12 
13 #include "CryptTest.h"
14 
15 
16 BTestSuite*
17 getTestSuite()
18 {
19 	BTestSuite* suite = new BTestSuite("LibRootPosix");
20 	CryptTest::AddTests(*suite);
21 	return suite;
22 }
23