mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
43 lines
954 B
C++
43 lines
954 B
C++
#include <Core/Core.h>
|
|
|
|
using namespace Upp;
|
|
|
|
CONSOLE_APP_MAIN
|
|
{
|
|
StdLogSetup(LOG_COUT|LOG_FILE);
|
|
|
|
SeedRandom(0);
|
|
|
|
Vector<int> h;
|
|
for(int i = 0; i < 100000; i++)
|
|
h << Random(5000);
|
|
|
|
ASSERT(CoSum(h) == Sum(h));
|
|
ASSERT(FindMin(h) == CoFindMin(h));
|
|
ASSERT(FindMax(h) == CoFindMax(h));
|
|
ASSERT(Min(h) == CoMin(h));
|
|
ASSERT(Max(h) == CoMax(h));
|
|
for(int i = 0; i < h.GetCount(); i++)
|
|
ASSERT(FindIndex(h, h[i]) == FindIndex(h, h[i]));
|
|
|
|
ASSERT(Count(h, 200) == CoCount(h, 200));
|
|
ASSERT(CountIf(h, [](int x) { return x % 17 == 0; }) == CoCountIf(h, [](int x) { return x % 17 == 0; }));
|
|
|
|
Vector<int> a;
|
|
Array<int> b;
|
|
for(int i = 0; i < 10000000; i++) {
|
|
int x = Random(10000);
|
|
a.Add(x);
|
|
b.Add(x);
|
|
}
|
|
|
|
ASSERT(IsEqualRange(a, b));
|
|
ASSERT(CoIsEqualRange(a, b));
|
|
|
|
a[a.GetCount() - a.GetCount() / 7]++;
|
|
|
|
ASSERT(!IsEqualRange(a, b));
|
|
ASSERT(!CoIsEqualRange(a, b));
|
|
|
|
LOG("============ OK");
|
|
}
|