DragonNest/Client/Test/SkillTest/EmblemTest/Test_Emblem.h
Cussrro 47f7895977 Revert "修复编码问题"
This reverts commit 9e69c01767.
2024-12-21 10:04:04 +08:00

26 lines
552 B
C++

#pragma once
#include <cppunit/TestCase.h>
#include <cppunit/extensions/HelperMacros.h>
class CDnItemCompounder;
class CTest_Emblem : public CppUnit::TestCase
{
CPPUNIT_TEST_SUITE( CTest_Emblem );
CPPUNIT_TEST( test_composition_Jewel_Plate );
CPPUNIT_TEST( test_item_decomposition );
CPPUNIT_TEST_SUITE_END();
private:
CDnItemCompounder* m_pItemCompounder;
public:
CTest_Emblem(void);
~CTest_Emblem(void);
//void test_composition_Jewel_Jewel( void );
void test_composition_Jewel_Plate( void );
void test_item_decomposition( void );
};