~jterrell/nunitv2/nunitv2

« back to all changes in this revision

Viewing changes to src/NUnitCore/core/NUnitTestFixture.cs

  • Committer: Charlie Poole
  • Date: 2012-01-15 18:44:23 UTC
  • mfrom: (3361.1.1 action-attributes)
  • Revision ID: charlie@nunit.org-20120115184423-pj9tjo8gev5dv89z
MergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
                Reflect.GetMethodsWithAttribute(this.FixtureType, NUnitFramework.TearDownAttribute, true);
32
32
 
33
33
#if CLR_2_0 || CLR_4_0
34
 
            this.actions = ActionsHelper.GetActionsFromTypeAttributes(fixtureType);
 
34
            this.actions = ActionsHelper.GetActionsFromTypesAttributes(fixtureType);
35
35
#endif
36
36
        }
37
37