mirror of
https://github.com/OpenRCT2/OpenRCT2.git
synced 2025-01-22 10:21:57 -05:00
80b63a5ae7
* Add line breaks after template declarations * Additional clang-format patches
32 lines
1.1 KiB
C++
32 lines
1.1 KiB
C++
/*****************************************************************************
|
|
* Copyright (c) 2014-2024 OpenRCT2 developers
|
|
*
|
|
* For a complete list of all authors, please refer to contributors.md
|
|
* Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
|
|
*
|
|
* OpenRCT2 is licensed under the GNU General Public License version 3.
|
|
*****************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include <gtest/gtest.h>
|
|
#include <initializer_list>
|
|
#include <vector>
|
|
|
|
template<typename T, typename TExpected>
|
|
static void AssertVector(const std::vector<T>& actual, TExpected expected)
|
|
{
|
|
ASSERT_EQ(actual.size(), expected.size()) << "Expected vector of size " << expected.size() << ", but was " << actual.size();
|
|
size_t i = 0;
|
|
for (auto item : expected)
|
|
{
|
|
EXPECT_EQ(actual[i], item) << "Element at index " << i << " did not match";
|
|
i++;
|
|
}
|
|
}
|
|
|
|
template<typename T>
|
|
static void AssertVector(const std::vector<T>& actual, std::initializer_list<T> expected)
|
|
{
|
|
AssertVector<T, std::initializer_list<T>>(actual, expected);
|
|
}
|