Как реализовать параллельное выполнение с использованием Specrun для NUnit

Я установил следующие NuGets: Specflow.Nunit,specflow,Specrun.Nunit вместе с NUnit 2.6.3. Я пытаюсь выполнить runtests.cmd(автоматически генерируется specrun.nunit), но я получаю следующую ошибку:

TechTalk.SpecRun.Framework.SpecRunException: по крайней мере один тестовый поток прерван. ---> System.Reflection.TargetInvocationException: исключение было сгенерировано целью вызова. ---> System.MissingMethodException: метод не найден: 'Void TechTalk.SpecRun.SpecRunner.Initialize()'. Мой default.srprofile содержит:

  <?xml version="1.0" encoding="utf-8"?>
    <TestProfile xmlns="http://www.specrun.com/schemas/2011/09/TestProfile">
      <Settings projectName="<PROJECTNAME>" projectId="{------}" />
      <Execution stopAfterFailures="3" testThreadCount="2" testSchedulingMode="Sequential" />
      <!-- For collecting by a SpecRun server update and enable the following element. For using the 
          collected statistics, set testSchedulingMode="Adaptive" attribute on the <Execution> element.
        <Server serverUrl="http://specrunserver:6365" publishResults="true" />
      -->
      <TestAssemblyPaths>
        <TestAssemblyPath>projectname.dll</TestAssemblyPath>
      </TestAssemblyPaths>
      <DeploymentTransformation>
        <Steps>`enter code here`
          <!-- sample config transform to change the connection string-->
          <!--<ConfigFileTransformation configFile="App.config">
            <Transformation>
              <![CDATA[<?xml version="1.0" encoding="utf-8"?>
                                <configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
                    <connectionStrings>
                      <add name="MyDatabase" connectionString="Data Source=.;Initial Catalog=MyDatabaseForTesting;Integrated Security=True" 
                           xdt:Locator="Match(name)" xdt:Transform="SetAttributes(connectionString)" />
                    </connectionStrings>
                                </configuration>
                            ]]>
            </Transformation>
          </ConfigFileTransformation>-->
        </Steps>
      </DeploymentTransformation>
    </TestProfile>

Также в окне вывода VS я получаю эту ошибку: не удалось загрузить файл или сборку 'TechTalk.SpecRun, версия =1.3.0.76, культура = нейтральная, PublicKeyToken=d0fc5cc18b3b389b' или одна из ее зависимостей. Система не может найти указанный файл. Может кто-нибудь помочь мне с этим?

1 ответ

Вы бы изменить эту строку:

      <RelocateConfigurationFile target="CustomConfig.{TestThreadId}.config" />
      <ConfigFileTransformation configFile="App.config">

Полный ответ: https://github.com/techtalk/SpecFlow/issues/954

Другие вопросы по тегам