1 /*--------------------------------------------------------------------------
2   Project:  HorizonSDK
3   File:     Test.h
4   Copyright 2009 Nintendo. All rights reserved.
5   These coded instructions, statements, and computer programs contain
6   proprietary information of Nintendo of America Inc. and/or Nintendo
7   Company Ltd., and are protected by Federal copyright law. They may
8   not be disclosed to third parties or copied or duplicated in any form,
9   in whole or in part, without the prior written consent of Nintendo.
10   $Date:: 2010-04-07#$
11   $Rev: 13736 $
12   $Author: hatamoto_minoru $
13  *-------------------------------------------------------------------------
14 
15 
16 */
17 
18 #include "stdafx.h"
19 
20 #ifndef NN_RDT_TEST_H_
21 #define NN_RDT_TEST_H_
22 
23 #ifdef _WIN32
24 #include <CUnit.h>
25 #include <Basic.h>
26 #else
27 #define CU_ASSERT(exp)
28 // ↑
29 // Actually want to include as shown below.
30 // #include <nn/test/compatible/test_CunitAssert.h>
31 #endif
32 
33 namespace nn { namespace rdt { namespace CTR {
34 
35 /* Please see man pages for details
36 
37 */
38 
39 }}} // namespace nn::rdt::CTR
40 
41 #endif  // end of NN_RDT_TEST_H_
42