[Mapbender-commits] r4701 - trunk/mapbender/test/http/classes

svn_mapbender at osgeo.org svn_mapbender at osgeo.org
Sat Sep 26 06:54:19 EDT 2009


Author: astrid_emde
Date: 2009-09-26 06:54:18 -0400 (Sat, 26 Sep 2009)
New Revision: 4701

Added:
   trunk/mapbender/test/http/classes/GroupTest.php
Log:
first steps test group

Added: trunk/mapbender/test/http/classes/GroupTest.php
===================================================================
--- trunk/mapbender/test/http/classes/GroupTest.php	                        (rev 0)
+++ trunk/mapbender/test/http/classes/GroupTest.php	2009-09-26 10:54:18 UTC (rev 4701)
@@ -0,0 +1,52 @@
+<?php
+require_once 'PHPUnit/Framework.php';
+require_once dirname(__FILE__) . "/../../../http/classes/class_group.php";
+
+class GroupTest extends PHPUnit_Framework_TestCase
+{
+	var $someGroup;
+	
+	public function setUp () {
+		$this->someGroup = new Group();		
+
+	}
+
+	public function tearDown () {
+		unset($this->someRssFactory);	
+	}
+	
+	
+	public function testCreate()
+    {
+        $this->assertEquals("GeoRss", get_class($this->geoRss));
+    }
+	
+	public function testChange()
+    {
+        $this->assertEquals("GeoRss", get_class($this->geoRss));
+    }
+    
+	public function testLoad()
+    {
+
+    }
+    
+    public function testRemove()
+    {
+
+    }
+    
+    public function testByName()
+    {
+
+    }
+    
+	public function testGetList()
+    {
+
+    }
+    
+    
+
+}
+?>
\ No newline at end of file



More information about the Mapbender_commits mailing list