Wiki
Show
Ignore:
Timestamp:
02/27/10 09:18:29 (2 years ago)
Author:
Chuck.Esterbrook
Message:

Use the new Cobra.Lang.Test.TestRunner? for running inline unit tests.
Fix some test cases from the last checkin.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • cobra/trunk/Tests/140-structs/300-type-decl-clauses.cobra

    r1946 r2291  
    44use System.Collections 
    55 
    6 class TestAttribute inherits Attribute 
     6class FooAttribute inherits Attribute 
    77    pass 
    88 
    9 class Test2Attribute inherits Attribute 
     9class Foo2Attribute inherits Attribute 
    1010    pass 
    1111 
     
    1818        pass 
    1919 
    20 struct C has Test is internal 
     20struct C has Foo is internal 
    2121 
    2222    pass 
    2323 
    24 struct D is internal has Test 
     24struct D is internal has Foo 
    2525    pass 
    2626 
    2727struct E is internal 
    2828 
    29     has Test 
     29    has Foo 
    3030     
    3131    pass 
     
    3434 
    3535 
    36     has Test 
     36    has Foo 
    3737    pass 
    3838 
    39 struct G is internal implements IDisposable has Test 
     39struct G is internal implements IDisposable has Foo 
    4040    def dispose 
    4141        pass 
    4242 
    43 struct H implements IDisposable, IEnumerable has Test, Test2 is public 
     43struct H implements IDisposable, IEnumerable has Foo, Foo2 is public 
    4444    def dispose 
    4545        pass 
     
    4949struct I 
    5050    implements IDisposable 
    51     has Test 
     51    has Foo 
    5252    is public 
    5353    def dispose