~charlie.poole/nunitv2/equality-handlers

« back to all changes in this revision

Viewing changes to src/NUnitCore/tests/TestCaseAttributeTests.cs

  • Committer: Charlie Poole
  • Date: 2011-03-29 21:54:46 UTC
  • mfrom: (3257.4.15 standalone-editor)
  • Revision ID: charlie@nunit.org-20110329215446-pu1r6okg4www4zat
Remove integrated project editor and substitute new standalone editor

Show diffs side-by-side

added added

removed removed

Lines of Context:
79
79
            return (sbyte)(x + y);
80
80
        }
81
81
 
82
 
#if NET_2_0 || NET_3_5
 
82
#if CLR_2_0
83
83
        [TestCase(Result = null)]
84
84
        public object ExpectedResultCanBeNull()
85
85
        {
122
122
        }
123
123
 
124
124
 
125
 
#if NET_2_0 || NET_3_5
 
125
#if CLR_2_0
126
126
        [TestCase(null, null)]
127
127
        public void CanPassNullAsArgument(object a, string b)
128
128
        {