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:
authorMadhura Jayaratne <madhura.cj@gmail.com>2012-06-04 17:48:30 +0400
committerMadhura Jayaratne <madhura.cj@gmail.com>2012-06-04 17:48:30 +0400
commitd6f966f16ffe4bbd52dd4a73fb243dc453a94c61 (patch)
tree6bc3396007d648de8c3ce450e8b5299b19982c30 /test
parent98a1b4c82b872ff52f8f3a62a77c5a683124870a (diff)
Add missing package tags
Diffstat (limited to 'test')
-rw-r--r--test/classes/gis/PMA_GIS_Factory_test.php2
-rw-r--r--test/classes/gis/PMA_GIS_Geom_test.php2
-rw-r--r--test/classes/gis/PMA_GIS_Geometry_test.php2
-rw-r--r--test/classes/gis/PMA_GIS_Linestring_test.php2
-rw-r--r--test/classes/gis/PMA_GIS_Multilinestring_test.php2
-rw-r--r--test/classes/gis/PMA_GIS_Multipoint_test.php2
-rw-r--r--test/classes/gis/PMA_GIS_Multipolygon_test.php2
-rw-r--r--test/classes/gis/PMA_GIS_Point_test.php2
-rw-r--r--test/classes/gis/PMA_GIS_Polygon_test.php2
9 files changed, 18 insertions, 0 deletions
diff --git a/test/classes/gis/PMA_GIS_Factory_test.php b/test/classes/gis/PMA_GIS_Factory_test.php
index ba0b320a09..a8c6a821ad 100644
--- a/test/classes/gis/PMA_GIS_Factory_test.php
+++ b/test/classes/gis/PMA_GIS_Factory_test.php
@@ -21,6 +21,8 @@ require_once 'libraries/gis/pma_gis_factory.php';
/**
* Test class for PMA_GIS_Factory
+ *
+ * @package PhpMyAdmin-test
*/
class PMA_GIS_FactoryTest extends PHPUnit_Framework_TestCase
{
diff --git a/test/classes/gis/PMA_GIS_Geom_test.php b/test/classes/gis/PMA_GIS_Geom_test.php
index 920a44c7f3..963a243a57 100644
--- a/test/classes/gis/PMA_GIS_Geom_test.php
+++ b/test/classes/gis/PMA_GIS_Geom_test.php
@@ -10,6 +10,8 @@ require_once 'libraries/gis/pma_gis_geometry.php';
/**
* Abstract parent class for all PMA_GIS_<Geom_type> test classes
+ *
+ * @package PhpMyAdmin-test
*/
abstract class PMA_GIS_GeomTest extends PHPUnit_Framework_TestCase
{
diff --git a/test/classes/gis/PMA_GIS_Geometry_test.php b/test/classes/gis/PMA_GIS_Geometry_test.php
index 6332e03baf..79aaca0f80 100644
--- a/test/classes/gis/PMA_GIS_Geometry_test.php
+++ b/test/classes/gis/PMA_GIS_Geometry_test.php
@@ -10,6 +10,8 @@ require_once 'libraries/gis/pma_gis_geometry.php';
/**
* Tests for PMA_GIS_Geometry class
+ *
+ * @package PhpMyAdmin-test
*/
class PMA_GIS_GeometryTest extends PHPUnit_Framework_TestCase
{
diff --git a/test/classes/gis/PMA_GIS_Linestring_test.php b/test/classes/gis/PMA_GIS_Linestring_test.php
index f8760b9133..133c8ff0af 100644
--- a/test/classes/gis/PMA_GIS_Linestring_test.php
+++ b/test/classes/gis/PMA_GIS_Linestring_test.php
@@ -12,6 +12,8 @@ require_once 'libraries/gis/pma_gis_linestring.php';
/**
* Tests for PMA_GIS_Linestring class
+ *
+ * @package PhpMyAdmin-test
*/
class PMA_GIS_LinestringTest extends PMA_GIS_GeomTest
{
diff --git a/test/classes/gis/PMA_GIS_Multilinestring_test.php b/test/classes/gis/PMA_GIS_Multilinestring_test.php
index aed8f721bf..8752957610 100644
--- a/test/classes/gis/PMA_GIS_Multilinestring_test.php
+++ b/test/classes/gis/PMA_GIS_Multilinestring_test.php
@@ -12,6 +12,8 @@ require_once 'libraries/gis/pma_gis_multilinestring.php';
/**
* Tests for PMA_GIS_Multilinestring class
+ *
+ * @package PhpMyAdmin-test
*/
class PMA_GIS_MultilinestringTest extends PMA_GIS_GeomTest
{
diff --git a/test/classes/gis/PMA_GIS_Multipoint_test.php b/test/classes/gis/PMA_GIS_Multipoint_test.php
index 8bc2119725..f7220ab6a5 100644
--- a/test/classes/gis/PMA_GIS_Multipoint_test.php
+++ b/test/classes/gis/PMA_GIS_Multipoint_test.php
@@ -12,6 +12,8 @@ require_once 'libraries/gis/pma_gis_multipoint.php';
/**
* Tests for PMA_GIS_Multipoint class
+ *
+ * @package PhpMyAdmin-test
*/
class PMA_GIS_MultipointTest extends PMA_GIS_GeomTest
{
diff --git a/test/classes/gis/PMA_GIS_Multipolygon_test.php b/test/classes/gis/PMA_GIS_Multipolygon_test.php
index eb1591690c..829655c9cb 100644
--- a/test/classes/gis/PMA_GIS_Multipolygon_test.php
+++ b/test/classes/gis/PMA_GIS_Multipolygon_test.php
@@ -12,6 +12,8 @@ require_once 'libraries/gis/pma_gis_multipolygon.php';
/**
* Tests for PMA_GIS_Multipolygon class
+ *
+ * @package PhpMyAdmin-test
*/
class PMA_GIS_MultipolygonTest extends PMA_GIS_GeomTest
{
diff --git a/test/classes/gis/PMA_GIS_Point_test.php b/test/classes/gis/PMA_GIS_Point_test.php
index 165c58f848..0fc75e92a1 100644
--- a/test/classes/gis/PMA_GIS_Point_test.php
+++ b/test/classes/gis/PMA_GIS_Point_test.php
@@ -12,6 +12,8 @@ require_once 'libraries/gis/pma_gis_point.php';
/**
* Tests for PMA_GIS_Point class.
+ *
+ * @package PhpMyAdmin-test
*/
class PMA_GIS_PointTest extends PMA_GIS_GeomTest
{
diff --git a/test/classes/gis/PMA_GIS_Polygon_test.php b/test/classes/gis/PMA_GIS_Polygon_test.php
index 9d0e951980..4ffa7040e6 100644
--- a/test/classes/gis/PMA_GIS_Polygon_test.php
+++ b/test/classes/gis/PMA_GIS_Polygon_test.php
@@ -12,6 +12,8 @@ require_once 'libraries/gis/pma_gis_polygon.php';
/**
* Tests for PMA_GIS_Polygon class
+ *
+ * @package PhpMyAdmin-test
*/
class PMA_GIS_PolygonTest extends PMA_GIS_GeomTest
{