~nunit-core/nunitv2/2.5

« back to all changes in this revision

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

  • Committer: Charlie Poole
  • Date: 2010-12-11 23:35:49 UTC
  • mfrom: (3284.1.3 work)
  • Revision ID: charlie@nunit.org-20101211233549-pb7p1b0w703xo9vl
MergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
            Assert.Ignore("Ignore this");
36
36
        }
37
37
 
38
 
        private static object[] source = new object[] {
 
38
        internal static object[] source = new object[] {
39
39
            new TestCaseData( 2, 3, 4 ).Throws(typeof(ArgumentNullException)) };
40
40
 
41
41
        [TestCaseSource("exception_source")]