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