~charlie.poole/nunitv2/equality-handlers

« back to all changes in this revision

Viewing changes to src/tests/test-assembly/TestCaseAttributeFixture.cs

  • Committer: Charlie Poole
  • Date: 2011-03-27 06:12:08 UTC
  • mfrom: (3290.1.7 work)
  • Revision ID: charlie@nunit.org-20110327061208-268vaqov3fc1fy71
Merge changes from trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
                [TestCase(2,3,4,TestName="XYZ")]
19
19
                public void MethodHasTestNameSpecified(int x, int y, int z)
20
20
                {}
21
 
 
22
 
                [TestCase(2, 2000000, Result=4)]
 
21
 
 
22
        [TestCase(2, 3, 4, Category = "XYZ")]
 
23
        public void MethodHasSingleCategory(int x, int y, int z)
 
24
        { }
 
25
 
 
26
        [TestCase(2, 3, 4, Category = "X,Y,Z")]
 
27
        public void MethodHasMultipleCategories(int x, int y, int z)
 
28
        { }
 
29
 
 
30
        [TestCase(2, 2000000, Result = 4)]
23
31
                public int MethodCausesConversionOverflow(short x, short y)
24
32
                {
25
33
                        return x + y;