summaryrefslogtreecommitdiff
path: root/modules/gallery_unit_test/libraries
diff options
context:
space:
mode:
authorNathan Kinkade <nkinkade@nkinka.de>2010-02-02 02:59:20 +0000
committerNathan Kinkade <nkinkade@nkinka.de>2010-02-02 02:59:20 +0000
commit9d0927dda936756f1f5003813f437d714fe481f8 (patch)
treefe1b887345b37387ab0ddcfd78bf344f6150b6cc /modules/gallery_unit_test/libraries
parenta6f794c20dc3592bcaef17c622413c1b670a20d8 (diff)
parent43985ea2fb137aa7d532617271e37d7c20def3c5 (diff)
Merge branch 'master' of git://github.com/gallery/gallery3
Diffstat (limited to 'modules/gallery_unit_test/libraries')
-rw-r--r--modules/gallery_unit_test/libraries/Gallery_Unit_Test_Case.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/modules/gallery_unit_test/libraries/Gallery_Unit_Test_Case.php b/modules/gallery_unit_test/libraries/Gallery_Unit_Test_Case.php
new file mode 100644
index 00000000..509b4125
--- /dev/null
+++ b/modules/gallery_unit_test/libraries/Gallery_Unit_Test_Case.php
@@ -0,0 +1,36 @@
+<?php defined("SYSPATH") or die("No direct script access.");
+/**
+ * Gallery - a web based photo album viewer and editor
+ * Copyright (C) 2000-2009 Bharat Mediratta
+ *
+ * This program 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 2 of the License, or (at
+ * your option) any later version.
+ *
+ * This program 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 this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+class Gallery_Unit_Test_Case extends Unit_Test_Case {
+ public function assert_equal_array($expected, $actual, $debug=null) {
+ if ($expected !== $actual) {
+ throw new Kohana_Unit_Test_Exception(
+ sprintf("Expected (%s) %s but received (%s) %s\n Diff: %s",
+ gettype($expected), var_export($expected, true),
+ gettype($actual), var_export($actual, true),
+ diff::compare(var_export($expected, true), var_export($actual, true))),
+ $debug);
+ }
+ return $this;
+ }
+
+ public function assert_array_equal_to_json($expected_array, $actual_json, $debug=null) {
+ return $this->assert_equal_array($expected_array, json_decode($actual_json, true), $debug);
+ }
+}