We have website on Shared hosting. I am a newbie.
i have installed PHPUnit testing framework on the server.
When i try to run a test case in command mode(phpunit --help), i am getting error as attached screenshot.
I try to create a simple OOP PHP that shows an error:
class_lib.php
<?php
class person {
var $name;
function __constructor($person_name){
echo "Initialize class";
}
function set_name($new_name){
$this->name($new_name);
} ...