fixture mapping not working!

Hi.

It seems fixture naming is not working…

Have two fixtures

domains.php

alldomains.php

Two different test cases, FirstTest.php and SecondTest.php

on FirstTest.php: public $fixtures=array(‘domains’=>‘Domains’);

on SecondTest.php: public $fixtures=array(‘alldomains’=>‘Domains’);

FirstTest works, SecondTest not (even if domains == alldomains and FirstTest == SecondTest)

Any ideas?

Best regards

Not really sure but I’ve had a similar case aswell, I think the fixture files should correspond to the database table name, so your alldomains.php file does nothing as it’s not a database table.