Commit:    c69921f76e738b8512b91a198e9c4a144f462a11
Author:    Derick Rethans <git...@derickrethans.nl>         Mon, 17 Dec 2012 
16:49:25 +0000
Parents:   11718f7447349e7a4191a3473fc3a2738948d18c
Branches:  immutable-date

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=c69921f76e738b8512b91a198e9c4a144f462a11

Log:
Added another test to test the unmodified inherited methods.

Changed paths:
  A  ext/date/tests/date_time_point-inherited.phpt


Diff:
diff --git a/ext/date/tests/date_time_point-inherited.phpt 
b/ext/date/tests/date_time_point-inherited.phpt
new file mode 100644
index 0000000..e355407
--- /dev/null
+++ b/ext/date/tests/date_time_point-inherited.phpt
@@ -0,0 +1,25 @@
+--TEST--
+Tests for DateTimePoint.
+--INI--
+date.timezone=Europe/London
+--FILE--
+<?php
+$tz = new DateTimeZone("Asia/Tokyo");
+$current = "2012-12-27 16:24:08";
+
+echo "\ngetTimezone():\n";
+$v = date_create_point($current);
+$x = $v->getTimezone();
+var_dump($x->getName());
+
+echo "\ngetTimestamp():\n";
+$v = date_create_point($current);
+$x = $v->getTimestamp();
+var_dump($x);
+?>
+--EXPECT--
+getTimezone():
+string(13) "Europe/London"
+
+getTimestamp():
+int(1356625448)


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to