mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-12-01 03:28:53 +08:00
9 lines
271 B
C++
9 lines
271 B
C++
#include "base/enums.h"
|
|
#include "gtest/gtest.h"
|
|
#include "base/assets_manager.h"
|
|
|
|
TEST(Enums, basic) {
|
|
ASSERT_EQ(asset_type_find("style"), asset_type_find_by_value(ASSET_TYPE_STYLE));
|
|
ASSERT_EQ(asset_type_find("xml"), asset_type_find_by_value(ASSET_TYPE_XML));
|
|
}
|