xref: /haiku/src/tests/apps/haikudepot/DataIOUtilsTest.h (revision 3634f142352af2428aed187781fc9d75075e9140)
1 /*
2  * Copyright 2023, Andrew Lindesay <apl@lindesay.co.nz>
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef DATA_IO_UTILS_TEST_H
6 #define DATA_IO_UTILS_TEST_H
7 
8 
9 #include <TestCase.h>
10 #include <TestSuite.h>
11 
12 
13 class DataIOUtilsTest : public CppUnit::TestCase {
14 public:
15 								DataIOUtilsTest();
16 	virtual						~DataIOUtilsTest();
17 
18 			void				TestReadBase64JwtClaims_1();
19 			void				TestReadBase64JwtClaims_2();
20 			void				TestReadBase64Corrupt();
21 
22 	static	void				AddTests(BTestSuite& suite);
23 };
24 
25 
26 #endif	// DATA_IO_UTILS_TEST_H
27