Show
Ignore:
Timestamp:
09/02/07 15:24:49 (16 months ago)
Author:
meus
Message:

moved all models to trunk/models. removed some old invalid testcases

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/tests/EventListener/ChainTestCase.php

    r1873 r2353  
    4848 
    4949} 
    50 class EventListenerChainTest extends Doctrine_Record  
    51 { 
    52     public function setTableDefinition() { 
    53         $this->hasColumn('name', 'string', 100); 
    54     } 
    55     public function setUp() { 
    56         $chain = new Doctrine_EventListener_Chain(); 
    57         $chain->add(new Doctrine_EventListener_TestA()); 
    58         $chain->add(new Doctrine_EventListener_TestB()); 
    59     } 
    60 } 
    6150 
    62 class Doctrine_EventListener_TestA extends Doctrine_EventListener  
    63 { 
    64  
    65 } 
    66 class Doctrine_EventListener_TestB extends Doctrine_EventListener  
    67 { 
    68  
    69 } 
    70