To execute your tests,
Slim needs to find the assemblies that contain your code. There's two ways to do this.
- You can list the assemblies in PATH definitions.
!path c:\myfolder\mytest.dll
!path c:\myfolder\myother.dll
<?xml version="1.0" encoding="utf-8" ?>
<config>
<ApplicationUnderTest>
<addAssembly>c:\myfolder\mytest.dll</addAssembly>
<addAssembly>c:\myfolder\myother.dll</addAssembly>
<addNamespace>My.Namespace</addNamespace>
</ApplicationUnderTest>
</config>This file is then specified in the COMMAND_PATTERN definition and the %p path token is removed.
!define COMMAND_PATTERN {%m -c c:\myfolder\mysuite.config.xml
-r fitSharp.Slim.Service.Runner,c:\program files\fitsharp\fitsharp.dll}