public function test_bucket_fill()
 {
     $c = new canvas(4, 4);
     //use the tool bucket-fill to fill all area arround the given point with the char passed as arg.
     $this->assertTrue($c->bucket_fill(array(1, 1), 'c'));
 }