Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have troubles with testing Model in CakePHP 2.0 and it seems the problem is on the model's constructor.

public function __construct(){
    parent::__construct(); 
    $this->_pagi_cuantos = 2;
}

Even if I delete all its content, I still getting problems trying to run the test.

Mark Story told me:

if you have a constructor make sure you're overriding the constructor correctly. Failing to do so will cause errors like this.

What do I wrong?

share|improve this question
What happens? You'll have to give us something more to go on if you want help... – Joep Apr 14 '12 at 13:04
Well, what happen should be irrelevant. But if you want to know it: the testCase doesn't select well the Database. It works with the default one when it should work with the test one. (btw, i have updated the post) – Steve Apr 14 '12 at 13:07
This problem is actual for all versions of CakePHP. I faced the same in 1.3 – SergeanT May 14 '12 at 20:50

2 Answers

up vote 4 down vote accepted

why don't you look into the core code its open source after all: https://github.com/cakephp/cakephp/blob/2.1/lib/Cake/Model/Model.php#L653

so for all your models:

public function __construct($id = false, $table = null, $ds = null) {
    parent::__construct($id, $table, $ds);
}
share|improve this answer
Thank you!! It worked well. – Steve Apr 14 '12 at 15:30

Rather than override the constructor, how about using beforeFilter() for controllers or the before methods for the Model such as beforeFind(), beforeValidate(), etc.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.