improve solution to allow custom mapping of class names when wrapping them
[plcapi.git] / tests / 5ServerTest.php
index 9374390..0345b79 100644 (file)
@@ -826,6 +826,15 @@ And turned it into nylon';
         $this->assertEquals('Michigan', $v->scalarval());
     }
 
+    public function testServerWrappedClassWithNamespace()
+    {
+        $m = new xmlrpcmsg('namespacetest.findState', array(
+            new xmlrpcval(23, 'int'),
+        ));
+        $v = $this->send($m);
+        $this->assertEquals('Michigan', $v->scalarval());
+    }
+
     public function testWrapInexistentMethod()
     {
         // make a 'deep client copy' as the original one might have many properties set
@@ -841,15 +850,6 @@ And turned it into nylon';
         $this->assertEquals(false, $func);
     }
 
-    public function testServerWrappedClassWithNamespace()
-    {
-        $m = new xmlrpcmsg('namespacetest.findState', array(
-            new xmlrpcval(23, 'int'),
-        ));
-        $v = $this->send($m);
-        $this->assertEquals('Michigan', $v->scalarval());
-    }
-
     public function testWrappedMethod()
     {
         // make a 'deep client copy' as the original one might have many properties set