contact.test.php 344 B

12345678910111213141516171819202122
  1. <?php
  2. App::import('Model', 'Tools.Contact');
  3. class ContactTestCase extends CakeTestCase {
  4. var $Contact = null;
  5. //var $fixtures = array('app.code_key');
  6. function startTest() {
  7. $this->Contact =& ClassRegistry::init('Contact');
  8. }
  9. function testContactInstance() {
  10. $this->assertTrue(is_a($this->Contact, 'Contact'));
  11. }
  12. //TODO
  13. }
  14. ?>