if (specFlowProject != null)
{
foreach (var assemblyName in specFlowProject.RuntimeConfiguration.AdditionalStepAssemblies)
{
string simpleName = assemblyName.Split(new[] { ',' }, 2)[0];
var stepProject = VsxHelper.FindProjectByAssemblyName(project.DTE, simpleName);
if (stepProject != null)
{
function = FindCodeFunction(stepProject, bindingMethod);
if (function != null)
return function;
}
}
}
When I try to got this binding by IntelliSense, I have nothing and even I always have "steps being populated 0%" message, that means the IntelliSense failed with internal error.
Probably the solution you have provided works in test runtime, but I know this feature and l know that it is not working in test generation. But intellisense in writing ATDD tests is the key feature for us, if it is not working - specflow is useless for us despite of its fascinating possibilities.
So, I clarify, I need to make IntelliSense work with steps defined in another compiled dll, sorry for inconvinience
вторник, 10 апреля 2012 г., 21:17:13 UTC+4 пользователь Roman V. Gavrilov написал: