Skip to content

Commit

Permalink
added test case: class A extends B implements IC.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruno Dias committed Dec 27, 2012
1 parent f369f70 commit d7daf1e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/language/php-test.js
Expand Up @@ -183,6 +183,13 @@ RainbowTester.run(
'<span class="storage class">class</span> <span class="entity name class">Collection</span><span class="storage modifier extends"> extends </span><span class="entity other inherited-class">ArrayObject</span> {}' '<span class="storage class">class</span> <span class="entity name class">Collection</span><span class="storage modifier extends"> extends </span><span class="entity other inherited-class">ArrayObject</span> {}'
); );


RainbowTester.run(
'child class with an implementation declaration',

'class Collection extends ArrayObject implements IList {}',

'<span class="storage class">class</span> <span class="entity name class">Collection</span><span class="storage modifier extends"> extends </span><span class="entity other inherited-class">ArrayObject</span><span class="storage modifier extends"> implements </span><span class="entity other inherited-class">IList</span> {}'
);


RainbowTester.run( RainbowTester.run(
'final child class declaration', 'final child class declaration',
Expand Down

0 comments on commit d7daf1e

Please sign in to comment.