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
in your CakeTestCase class, just put a member dropTables:
Comment =& ClassRegistry::init('Comment'); $this->Comment->useDbConfig = 'test_suite'; }