7#ifndef TEST_ARCCORE_COLLECTIONS_TESTARRAYCOMMON_H
8#define TEST_ARCCORE_COLLECTIONS_TESTARRAYCOMMON_H
12#include "arccore/base/ArccoreGlobal.h"
14#include <gtest/gtest.h>
27using namespace Arccore;
35 IntSubClass() =
default;
37 friend bool operator==(
const IntSubClass& v,
Integer iv) {
return v.m_v == iv; }
38 friend bool operator==(
const IntSubClass& v1,
const IntSubClass& v2) {
return v1.m_v == v2.m_v; }
39 friend bool operator!=(
const IntSubClass& v1,
const IntSubClass& v2) {
return v1.m_v != v2.m_v; }
40 friend std::ostream& operator<<(std::ostream& o,
const IntSubClass& c)
50 IntSubClassNoPod() =
default;
51 explicit IntSubClassNoPod(
Integer v)
56 friend bool operator==(
const IntSubClassNoPod& v,
Integer iv) {
return v.m_v == iv; }
58 friend bool operator!=(
const IntSubClassNoPod& v1,
const IntSubClassNoPod& v2) {
return v1.m_v != v2.m_v; }
59 friend std::ostream& operator<<(std::ostream& o, IntSubClassNoPod c)
46class IntSubClassNoPod {
…};
74#define ARCCORE_UT_CHECK(expr,message) \
76 throw Arccore::FatalErrorException((message))
101 IntPtrSubClass(
const IntPtrSubClass& v)
106 void operator=(
const IntPtrSubClass& v)
112 bool operator==(
Integer iv)
const
80class IntPtrSubClass {
…};
122template <
typename T>
inline
125 ASSERT_EQ(a.allocator(), b.allocator());
127 ASSERT_EQ(a.dim1Size(), b.dim1Size());
128 ASSERT_EQ(a.dim2Size(), b.dim2Size());
Tableau 2D d'items de types quelconques.
Integer totalNbElement() const
Nombre total d'éléments (dim1Size()*dim2Size())
Int32 Integer
Type représentant un entier.
Espace de nom de Arccore.