I am creating tests in C# Selenium Specflow. My framework is fine and builds but when I add a Specflow Feature File and build my project I get the error:
Error CS0234 The type or namespace name 'TestFixtureSetUpAttributeAttribute' does not exist in the namespace 'NUnit.Framework' (are you missing an assembly reference?) Olympus D:\Selenium Projects\companyname framework for interviews\Olympus2\Tests\SpecFlowFeature1.feature 3 Active
The version of Specflow installed is v4.0.30319
Why does this error occur?
In my Base class I am using [BeforeScenario()] from TechTalk.SpecFlow; The error complains about TestFixtureSetUp. I am not using this attribute anywhere. This attribute I used to use before from Nunit Framework, this was few years ago before BDD.
Any help appreciated, thanks.