Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMichal Čihař <mcihar@suse.cz>2012-06-04 12:03:31 +0400
committerMichal Čihař <mcihar@suse.cz>2012-06-04 12:03:31 +0400
commita4d73dcaacd8b734c9fa615a08dd72e6c282982c (patch)
tree8186ff57bdce36c11698bc8c7f21a352664cc35b /test
parentc6f70c2fe32c390794e5b30c88481214e26e8c32 (diff)
Whitespace cleanup
Diffstat (limited to 'test')
-rw-r--r--test/classes/gis/PMA_GIS_Geometry_test.php34
1 files changed, 17 insertions, 17 deletions
diff --git a/test/classes/gis/PMA_GIS_Geometry_test.php b/test/classes/gis/PMA_GIS_Geometry_test.php
index ebfb54ea8a..6332e03baf 100644
--- a/test/classes/gis/PMA_GIS_Geometry_test.php
+++ b/test/classes/gis/PMA_GIS_Geometry_test.php
@@ -244,12 +244,12 @@ class PMA_GIS_GeometryTest extends PHPUnit_Framework_TestCase
),
);
}
-
+
/**
*
* @param type $srid
* @param type $scale_data
- * @param type $output
+ * @param type $output
* @dataProvider providerForTestGetBoundsForOl
*/
public function testGetBoundsForOl($srid, $scale_data, $output){
@@ -262,29 +262,29 @@ class PMA_GIS_GeometryTest extends PHPUnit_Framework_TestCase
$output
);
}
-
+
public function providerForTestGetBoundsForOl() {
return array(
array(
4326,
array(
- 'minX' => '0',
+ 'minX' => '0',
'minY' => '0',
- 'maxX' => '1',
+ 'maxX' => '1',
'maxY' => '1'
),
'bound = new OpenLayers.Bounds(); bound.extend(new OpenLayers.LonLat(0, 0).transform(new OpenLayers.Projection("EPSG:4326"), map.getProjectionObject())); bound.extend(new OpenLayers.LonLat(1, 1).transform(new OpenLayers.Projection("EPSG:4326"), map.getProjectionObject()));'
- ),
+ ),
);
-
+
}
-
+
/**
*
* @param type $polygons
* @param type $srid
- * @param type $output
- *
+ * @param type $output
+ *
*@dataProvider providerForTestGetPolygonArrayForOpenLayers
*/
public function testGetPolygonArrayForOpenLayers($polygons, $srid, $output){
@@ -296,16 +296,16 @@ class PMA_GIS_GeometryTest extends PHPUnit_Framework_TestCase
$output
);
}
-
+
public function providerForTestGetPolygonArrayForOpenLayers(){
-
+
return array(
-
-
+
+
);
-
+
}
-
-
+
+
}
?>