Lines Matching refs:test
42 function r($test) {
43 echo $test->prop;
46 function w($test) {
47 $test->prop = 0;
51 function rw($test) {
52 $test->prop += 1;
56 function im($test) {
57 $test->prop[] = 1;
61 function is($test) {
62 echo (int) isset($test->prop);
65 function us($test) {
66 unset($test->prop);
73 $test = new Test();
75 $test->init();
81 $test->{$op}();
83 $op($test);