I have a car object such as:
class DieselCar#206 (2) {
protected $_options =>
array(4) {
'type' =>
string(6) "diesel"
'make' =>
string(5) "chevy"
'model' =>
string(4) "2005"
'OdometerReading' =>
string(6) "2346km"
}
protected $_tasks =>
array(0) {
}
}
This is created via doing this following:
<?php
Class Car{
protected $_options;
protected $_tasks = array();
public function __construct(array $options){
if(!isset($options)){
throw new Exception('No Options were set');
}
$this->_options = $options;
}
public function __get($key){
if(isset($this->_options[$key])){
return $this->_options[$key];
}
}
public function __set($key, $value){
$this->_options[$key] = $value;
}
public function canAddMaintanceTask($task){
return true;
}
public function addMaintanceTask($task){
if($this->canAddMaintanceTask($task)){
print_r($task); exit;
$this->_task = $task;
}
}
}
The car class will create the object you see above. all you need to do is the following:
$array = array(
'type' => 'diesel',
'make' => 'chevy',
'model' => 2005
'OdometerReading' => '2346km'
);
$car = new Car($array)
from here we need to add this car to something, so lets go ahead and write that class:
<?php
class CarStore{
protected $_carArray = array();
public function __construct(){
}
public function add($car){
$this->_carArray[] = $car;
return true;
}
public function listCars(){
return $this->_carArray;
}
public function delete($car){
if(in_array($car, $this->_carArray)){
$this->_carArray = array_udiff($this->_carArray, array($car), array($this, 'compareObjects'));
return true;
}
return false;
}
public function find($car){
if(in_array($car, $this->_carArray)){
//var_dump($this->_carArray[0]->type); exit;
return $this->_carArray[0];
}
return false;
}
public function compareObjects($object1, $object2){
return $object1->id - $object2->id;
}
}
now all we have to do is the following:
$carStore = new CarStorage();
$carStore->add($car);
So we have added the car into the array (our mock database) and now we have to add a task:
$car->addMaintanceTask('OilChange');
the problem is, I seem to be adding this oil Change to a null object? I wrote a test in phpunit, ill post the function:
public function testAddTask(){
$this->_storage->add($this->_car);
$this->assertTrue($this->_car->addMaintanceTask('OilChange'));
}
Note: the $this->_car is set up in SetUpMethod such as:
public function setUp(){
parent::SetUp();
$array = array(
'type' => 'diesel',
'make' => 'chevy',
'model' => '2005',
'OdometerReading' => '2346km'
);
$this->_car = new DieselCar($array);
$this->_storage = new CarStore();
}
When I run the test I get the error:
Asserting Null is true
So thats everything, the two classes, one for the car, one for the storage and the begining of the test class.
whats going on? why is it null?
print_ron the variable before that method - maybe it isn't initialised correctly. I don't think errors in the constructor would cause this, but is worth checking that all error reporting is turned on all the same. – halfer Jan 20 at 23:16