blob: 08bd48bfc0e2005526d194919bbdd8207489daf8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
/*
* Copyright (c) 2010-2016 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#include <set>
#include <cppunit/extensions/HelperMacros.h>
#include <cppunit/extensions/TestFactoryRegistry.h>
#include <Swiften/Base/IDGenerator.h>
using namespace Swift;
class IDGeneratorTest : public CppUnit::TestFixture
{
CPPUNIT_TEST_SUITE(IDGeneratorTest);
CPPUNIT_TEST(testGenerate);
CPPUNIT_TEST_SUITE_END();
public:
IDGeneratorTest() {}
void setUp() {
generatedIDs_.clear();
}
void testGenerate() {
IDGenerator testling;
for (unsigned int i = 0; i < 26*4; ++i) {
std::string id = testling.generateID();
CPPUNIT_ASSERT(generatedIDs_.insert(id).second);
}
}
private:
std::set<std::string> generatedIDs_;
};
CPPUNIT_TEST_SUITE_REGISTRATION(IDGeneratorTest);
|