Is it possible to have two step definition classes with first being in one namespace/project, and second in another one? I have like this:
My test project which I run: namespace: ABZ.ExcelTest class name: ABZ.ExcelTest.ExcelStepDefinition
My other project which is Logic for testing: namespace: ABZ.OfficeAddInTestLogic class name: ABZ.OfficeAddInTestLogic.StepDefinition
I have [Binding] attribute on both my classes but this one which is not in test project (ABZ.OfficeAddInTestLogic.StepDefinition) cannot be found, I get NUnit error:
No matching step definition found for the step. Use the following code to create one: ...
Is it possible to have 2 step definition classes in different projects?