ContactFormTest.php 392 B

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