ContactFormTest.php 387 B

123456789101112131415161718192021
  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 setUp() {
  7. $this->ContactForm = ClassRegistry::init('Tools.ContactForm');
  8. }
  9. public function testContactInstance() {
  10. $this->assertTrue(is_a($this->ContactForm, 'ContactForm'));
  11. }
  12. //TODO
  13. }