56 строки
948 B
C++
56 строки
948 B
C++
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT license.
|
|
#ifndef INCLUDED_MI_VALUE_TEST_HPP
|
|
#define INCLUDED_MI_VALUE_TEST_HPP
|
|
|
|
|
|
#include "test_helper.hpp"
|
|
|
|
|
|
namespace test
|
|
{
|
|
|
|
|
|
class mi_value_test : public test_class<mi_value_test>
|
|
{
|
|
public:
|
|
/*ctor*/ mi_value_test ();
|
|
|
|
int test01 ();
|
|
int test02 ();
|
|
int test03 ();
|
|
int test04 ();
|
|
int test05 ();
|
|
int test06 ();
|
|
int test07 ();
|
|
int test08 ();
|
|
int test09 ();
|
|
int test10 ();
|
|
int test11 ();
|
|
int test12 ();
|
|
int test13 ();
|
|
int test14 ();
|
|
int test15 ();
|
|
int test16 ();
|
|
int test17 ();
|
|
int test18 ();
|
|
int test19 ();
|
|
int test20 ();
|
|
int test21 ();
|
|
int test22 ();
|
|
int test23 ();
|
|
int test24 ();
|
|
int test25 ();
|
|
int test26 ();
|
|
int test27 ();
|
|
int test28 ();
|
|
int test29 ();
|
|
int test30 ();
|
|
};
|
|
|
|
|
|
} // namespace test
|
|
|
|
|
|
#endif // INCLUDED_MI_VALUE_TEST_HPP
|