Annotation of embedaddon/php/ext/dom/tests/DOMAttr_value_basic_002.phpt, revision 1.1.1.2

1.1       misho       1: --TEST--
                      2: Write non-string $value property
1.1.1.2 ! misho       3: --CREDITS--
1.1       misho       4: Eric Berg <ehberg@gmail.com>
                      5: # TestFest Atlanta 2009-05-14
                      6: --SKIPIF--
                      7: <?php require_once('skipif.inc'); ?>
                      8: --FILE--
                      9: <?php
                     10: $attr = new DOMAttr('category');
                     11: $attr->value = 1;
                     12: print $attr->value;
                     13: ?>
                     14: --EXPECTF--
1.1.1.2 ! misho      15: 1

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>