gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r21939 - in gnunet-java/test/org: . nse org/gnunet/nse


From: gnunet
Subject: [GNUnet-SVN] r21939 - in gnunet-java/test/org: . nse org/gnunet/nse
Date: Wed, 13 Jun 2012 02:43:05 +0200

Author: dold
Date: 2012-06-13 02:43:05 +0200 (Wed, 13 Jun 2012)
New Revision: 21939

Added:
   gnunet-java/test/org/nse/
   gnunet-java/test/org/nse/NSETest.java
Removed:
   gnunet-java/test/org/org/gnunet/nse/NSETest.java
Log:
fix

Copied: gnunet-java/test/org/nse/NSETest.java (from rev 21938, 
gnunet-java/test/org/org/gnunet/nse/NSETest.java)
===================================================================
--- gnunet-java/test/org/nse/NSETest.java                               (rev 0)
+++ gnunet-java/test/org/nse/NSETest.java       2012-06-13 00:43:05 UTC (rev 
21939)
@@ -0,0 +1,58 @@
+/*
+ This file is part of GNUnet.
+ (C) 2011, 2012 Christian Grothoff (and other contributing authors)
+
+ GNUnet is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published
+ by the Free Software Foundation; either version 3, or (at your
+ option) any later version.
+
+ GNUnet is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with GNUnet; see the file COPYING.  If not, write to the
+ Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA.
+ */
+
+package org.nse;
+
+import org.gnunet.nse.NetworkSizeEstimation;
+import org.gnunet.testing.TestingSetup;
+import org.gnunet.testing.TestingSubsystem;
+import org.gnunet.util.AbsoluteTime;
+import org.gnunet.util.Scheduler;
+import org.gnunet.util.Wrapper;
+import org.junit.Test;
+
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertTrue;
+
+/**
+ * @author Florian Dold
+ */
+public class NSETest {
+    @Test
+    public void test_nse() {
+        final Wrapper<Boolean> gotResult = new Wrapper<Boolean>(false);
+        TestingSetup testing = new TestingSetup();
+        TestingSubsystem ts = testing.startSubsystem("nse");
+
+        final NetworkSizeEstimation nse = new 
NetworkSizeEstimation(ts.getConfiguration());
+        nse.subscribe(new NetworkSizeEstimation.Subscriber() {
+            @Override
+            public void update(AbsoluteTime timestamp, double estimate, double 
deviation) {
+                assertNotNull(timestamp);
+                gotResult.set(true);
+                nse.disconnect();
+            }
+        });
+
+        Scheduler.run();
+
+        assertTrue(gotResult.get());
+    }
+}

Deleted: gnunet-java/test/org/org/gnunet/nse/NSETest.java
===================================================================
--- gnunet-java/test/org/org/gnunet/nse/NSETest.java    2012-06-13 00:03:56 UTC 
(rev 21938)
+++ gnunet-java/test/org/org/gnunet/nse/NSETest.java    2012-06-13 00:43:05 UTC 
(rev 21939)
@@ -1,58 +0,0 @@
-/*
- This file is part of GNUnet.
- (C) 2011, 2012 Christian Grothoff (and other contributing authors)
-
- GNUnet is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published
- by the Free Software Foundation; either version 3, or (at your
- option) any later version.
-
- GNUnet is distributed in the hope that it will be useful, but
- WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with GNUnet; see the file COPYING.  If not, write to the
- Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- Boston, MA 02111-1307, USA.
- */
-
-package org.org.gnunet.nse;
-
-import org.gnunet.nse.NetworkSizeEstimation;
-import org.gnunet.testing.TestingSetup;
-import org.gnunet.testing.TestingSubsystem;
-import org.gnunet.util.AbsoluteTime;
-import org.gnunet.util.Scheduler;
-import org.gnunet.util.Wrapper;
-import org.junit.Test;
-
-import static org.junit.Assert.assertNotNull;
-import static org.junit.Assert.assertTrue;
-
-/**
- * @author Florian Dold
- */
-public class NSETest {
-    @Test
-    public void test_nse() {
-        final Wrapper<Boolean> gotResult = new Wrapper<Boolean>(false);
-        TestingSetup testing = new TestingSetup();
-        TestingSubsystem ts = testing.startSubsystem("nse");
-
-        final NetworkSizeEstimation nse = new 
NetworkSizeEstimation(ts.getConfiguration());
-        nse.subscribe(new NetworkSizeEstimation.Subscriber() {
-            @Override
-            public void update(AbsoluteTime timestamp, double estimate, double 
deviation) {
-                assertNotNull(timestamp);
-                gotResult.set(true);
-                nse.disconnect();
-            }
-        });
-
-        Scheduler.run();
-
-        assertTrue(gotResult.get());
-    }
-}




reply via email to

[Prev in Thread] Current Thread [Next in Thread]