summaryrefslogtreecommitdiff
path: root/src/resources/db
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-01-17 00:41:16 +0300
committerAndrei Karas <akaras@inbox.ru>2016-01-17 00:41:16 +0300
commitcaf2e3c4fb749561c37eaff324de86a9edf83808 (patch)
treec20d8b2a5863c0366f0804fe7a4361ccfc16a927 /src/resources/db
parent0ad55dae62f1c8295517bf87844368575a813d57 (diff)
downloadmv-caf2e3c4fb749561c37eaff324de86a9edf83808.tar.gz
mv-caf2e3c4fb749561c37eaff324de86a9edf83808.tar.bz2
mv-caf2e3c4fb749561c37eaff324de86a9edf83808.tar.xz
mv-caf2e3c4fb749561c37eaff324de86a9edf83808.zip
Add unit tests for links replace function.
Diffstat (limited to 'src/resources/db')
-rw-r--r--src/resources/db/itemdb.cpp7
-rw-r--r--src/resources/db/itemdb.h4
2 files changed, 11 insertions, 0 deletions
diff --git a/src/resources/db/itemdb.cpp b/src/resources/db/itemdb.cpp
index b8e49a2db..b4af71c17 100644
--- a/src/resources/db/itemdb.cpp
+++ b/src/resources/db/itemdb.cpp
@@ -1055,3 +1055,10 @@ static void loadOrderSprite(ItemInfo *const itemInfo,
itemInfo->setDrawBefore(direction, sprite);
itemInfo->setDrawPriority(direction, priority);
}
+
+#ifdef UNITTESTS
+ItemDB::NamedItemInfos &ItemDB::getNamedItemInfosTest()
+{
+ return mNamedItemInfos;
+}
+#endif
diff --git a/src/resources/db/itemdb.h b/src/resources/db/itemdb.h
index 0436f604c..9231bbfc8 100644
--- a/src/resources/db/itemdb.h
+++ b/src/resources/db/itemdb.h
@@ -60,6 +60,10 @@ namespace ItemDB
const ItemDB::ItemInfos &getItemInfos();
+#ifdef UNITTESTS
+ ItemDB::NamedItemInfos &getNamedItemInfosTest();
+#endif
+
int getTagId(const std::string &tagName) A_WARN_UNUSED;
void setStatsList(const std::vector<Stat> &stats);