summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2010-06-07 20:29:38 (GMT)
committerKevin Smith <git@kismith.co.uk>2010-06-07 20:29:38 (GMT)
commit49d27079117c6b2763ff7c582815bc2a7b083a7f (patch)
treea6bec2820d9e205585b5d4b7d3765653b2227a3b /Swift/Controllers/UnitTest/MockMUCRegistry.h
parentcca06e56679065f4b166a72623da36ddf598366e (diff)
downloadswift-49d27079117c6b2763ff7c582815bc2a7b083a7f.zip
swift-49d27079117c6b2763ff7c582815bc2a7b083a7f.tar.bz2
Don't resolve Nick for a bare MUC JID as an empty string.
Resolves: #435
Diffstat (limited to 'Swift/Controllers/UnitTest/MockMUCRegistry.h')
-rw-r--r--Swift/Controllers/UnitTest/MockMUCRegistry.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/Swift/Controllers/UnitTest/MockMUCRegistry.h b/Swift/Controllers/UnitTest/MockMUCRegistry.h
new file mode 100644
index 0000000..fdda8e1
--- /dev/null
+++ b/Swift/Controllers/UnitTest/MockMUCRegistry.h
@@ -0,0 +1,24 @@
+/*
+ * Copyright (c) 2010 Kevin Smith
+ * Licensed under the GNU General Public License v3.
+ * See Documentation/Licenses/GPLv3.txt for more information.
+ */
+
+#pragma once
+
+#include "Swiften/MUC/MUCRegistry.h"
+
+namespace Swift {
+ class JID;
+
+ class MockMUCRegistry : public MUCRegistry {
+ public:
+ virtual ~MockMUCRegistry() {};
+
+ void setNext(bool next) {next_ = next;}
+ virtual bool isMUC(const JID&) const {return next_;}
+
+ private:
+ bool next_;
+ };
+}