I\'m not sure what I\'ve done wrong in my CakePHP unit test configuration. Every time I run a test case, the model tables associated with my fixtures are missing form my test da
I think that's the idea. Fixtures are fixed tables with fixed contents. They're not the tables you use otherwise in production or during development. That's why they have a separate connection in database.php, you're supposed to use a different database or at least a different prefix for test tables. These will be created based on your fixtures before each test and torn down afterwards, so you're always testing against a known set of data.