@@ -34,7 +34,7 @@ public function testPrintlnWithStringParams()
3434 public function testPrintlnWithCharParams ()
3535 {
3636 $ result = $ this ->call (explode (':: ' , __METHOD__ )[1 ]);
37- $ this ->assertEquals ("65 \n" , $ result );
37+ $ this ->assertEquals ("A \n" , $ result );
3838 }
3939
4040 public function testPrintlnWithCharArrayParams ()
@@ -58,10 +58,10 @@ public function testPrintlnWithDoubleParams()
5858 public function testPrintlnWithBooleanParams ()
5959 {
6060 $ result = $ this ->call (explode (':: ' , __METHOD__ )[1 ] . '_true ' );
61- $ this ->assertEquals ("1 \n" , $ result );
61+ $ this ->assertEquals ("true \n" , $ result );
6262
6363 $ result = $ this ->call (explode (':: ' , __METHOD__ )[1 ] . '_false ' );
64- $ this ->assertEquals ("0 \n" , $ result );
64+ $ this ->assertEquals ("false \n" , $ result );
6565 }
6666
6767 public function testPrintWithStringParams ()
@@ -73,7 +73,7 @@ public function testPrintWithStringParams()
7373 public function testPrintWithCharParams ()
7474 {
7575 $ result = $ this ->call (explode (':: ' , __METHOD__ )[1 ]);
76- $ this ->assertEquals ("65 " , $ result );
76+ $ this ->assertEquals ("A " , $ result );
7777 }
7878
7979 public function testPrintWithCharArrayParams ()
@@ -97,9 +97,9 @@ public function testPrintWithDoubleParams()
9797 public function testPrintWithBooleanParams ()
9898 {
9999 $ result = $ this ->call (explode (':: ' , __METHOD__ )[1 ] . '_true ' );
100- $ this ->assertEquals ("1 " , $ result );
100+ $ this ->assertEquals ("true " , $ result );
101101
102102 $ result = $ this ->call (explode (':: ' , __METHOD__ )[1 ] . '_false ' );
103- $ this ->assertEquals ("0 " , $ result );
103+ $ this ->assertEquals ("false " , $ result );
104104 }
105105}
0 commit comments