mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-19 21:13:35 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
12 lines
251 B
C++
12 lines
251 B
C++
#include "testing/testing.hpp"
|
|
|
|
#include "base/collection_cast.hpp"
|
|
|
|
#include <list>
|
|
#include <vector>
|
|
|
|
UNIT_TEST(collection_cast)
|
|
{
|
|
TEST_EQUAL((std::list<int>{1, 2, 3, 4, }), base::collection_cast<std::list>(std::vector<int> {1, 2, 3, 4}), ());
|
|
}
|