summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2011-02-14 18:57:18 (GMT)
committerRemko Tronçon <git@el-tramo.be>2011-02-14 21:36:32 (GMT)
commitcb05f5a908e20006c954ce38755c2e422ecc2388 (patch)
treea793551a5fe279a57d4330119560e8542f745484 /Swiften/LinkLocal/UnitTest/LinkLocalServiceTest.cpp
parentcad974b45c0fb9355e68d9728e42c9ae3dbcebc7 (diff)
downloadswift-cb05f5a908e20006c954ce38755c2e422ecc2388.zip
swift-cb05f5a908e20006c954ce38755c2e422ecc2388.tar.bz2
Removed Swift::String.
Diffstat (limited to 'Swiften/LinkLocal/UnitTest/LinkLocalServiceTest.cpp')
-rw-r--r--Swiften/LinkLocal/UnitTest/LinkLocalServiceTest.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/Swiften/LinkLocal/UnitTest/LinkLocalServiceTest.cpp b/Swiften/LinkLocal/UnitTest/LinkLocalServiceTest.cpp
index 0d4de13..4835bde 100644
--- a/Swiften/LinkLocal/UnitTest/LinkLocalServiceTest.cpp
+++ b/Swiften/LinkLocal/UnitTest/LinkLocalServiceTest.cpp
@@ -24,35 +24,35 @@ class LinkLocalServiceTest : public CppUnit::TestFixture {
void testGetDescription_WithNick() {
LinkLocalService testling = createService("alice@wonderland", "Alice", "Alice In", "Wonderland");
- CPPUNIT_ASSERT_EQUAL(String("Alice"), testling.getDescription());
+ CPPUNIT_ASSERT_EQUAL(std::string("Alice"), testling.getDescription());
}
void testGetDescription_WithFirstName() {
LinkLocalService testling = createService("alice@wonderland", "", "Alice In");
- CPPUNIT_ASSERT_EQUAL(String("Alice In"), testling.getDescription());
+ CPPUNIT_ASSERT_EQUAL(std::string("Alice In"), testling.getDescription());
}
void testGetDescription_WithLastName() {
LinkLocalService testling = createService("alice@wonderland", "", "", "Wonderland");
- CPPUNIT_ASSERT_EQUAL(String("Wonderland"), testling.getDescription());
+ CPPUNIT_ASSERT_EQUAL(std::string("Wonderland"), testling.getDescription());
}
void testGetDescription_WithFirstAndLastName() {
LinkLocalService testling = createService("alice@wonderland", "", "Alice In", "Wonderland");
- CPPUNIT_ASSERT_EQUAL(String("Alice In Wonderland"), testling.getDescription());
+ CPPUNIT_ASSERT_EQUAL(std::string("Alice In Wonderland"), testling.getDescription());
}
void testGetDescription_NoInfo() {
LinkLocalService testling = createService("alice@wonderland");
- CPPUNIT_ASSERT_EQUAL(String("alice@wonderland"), testling.getDescription());
+ CPPUNIT_ASSERT_EQUAL(std::string("alice@wonderland"), testling.getDescription());
}
private:
- LinkLocalService createService(const String& name, const String& nickName = String(), const String& firstName = String(), const String& lastName = String()) {
+ LinkLocalService createService(const std::string& name, const std::string& nickName = std::string(), const std::string& firstName = std::string(), const std::string& lastName = std::string()) {
DNSSDServiceID service(name, "local.");
LinkLocalServiceInfo info;
info.setFirstName(firstName);