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
16BTestSuite*
17getTestSuite()
18{
19	BTestSuite* suite = new BTestSuite("LibRootPosix");
20	CryptTest::AddTests(*suite);
21	return suite;
22}
23