summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Clayton <alex.clayton@isode.com>2016-02-08 12:30:12 (GMT)
committerAlex Clayton <alex.clayton@isode.com>2016-02-16 11:02:39 (GMT)
commit2ebf488dfee7156fbbe0b3d3eccebe13d86a8634 (patch)
tree8f0c873e2048e9f3a5bca51f358f60b21e690dd2 /src/com/isode/stroke/network/DummyNetworkEnvironment.java
parent810abab2eb236c68c75025e383609d952af71e4f (diff)
downloadstroke-2ebf488dfee7156fbbe0b3d3eccebe13d86a8634.zip
stroke-2ebf488dfee7156fbbe0b3d3eccebe13d86a8634.tar.bz2
Add the FileTransfer tests
Add the missing FileTransfer tests to stroke. When porting the tests I found some of them were failing and required changes to the classes being tested to fix. Had to add a DummyNetworkEnvironment as well for the OutgoingJingleFileTransferTest. Test-information: All unit tests pass. Change-Id: Id511a556ef3a5d66e0e107f36f736db3bbb3a437
Diffstat (limited to 'src/com/isode/stroke/network/DummyNetworkEnvironment.java')
-rw-r--r--src/com/isode/stroke/network/DummyNetworkEnvironment.java32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/com/isode/stroke/network/DummyNetworkEnvironment.java b/src/com/isode/stroke/network/DummyNetworkEnvironment.java
new file mode 100644
index 0000000..32524d9
--- /dev/null
+++ b/src/com/isode/stroke/network/DummyNetworkEnvironment.java
@@ -0,0 +1,32 @@
+/* Copyright (c) 2016, Isode Limited, London, England.
+ * All rights reserved.
+ *
+ * Acquisition and use of this software and related materials for any
+ * purpose requires a written license agreement from Isode Limited,
+ * or a written license from an organisation licensed by Isode Limited
+ * to grant such a license.
+ *
+ */
+package com.isode.stroke.network;
+
+import java.util.Vector;
+
+/**
+ * Dummy {@link NetworkEnvironment} for testing, returns an empty vector
+ * of {@link NetworkInterface}
+ */
+public class DummyNetworkEnvironment extends NetworkEnvironment {
+
+ /**
+ * Constructor
+ */
+ public DummyNetworkEnvironment() {
+ // Empty Constructor
+ }
+
+ @Override
+ public Vector<NetworkInterface> getNetworkInterfaces() {
+ return new Vector<NetworkInterface>();
+ }
+
+}