Wpf unit test fix to be more like Gtk

This commit is contained in:
David Karlaš 2014-01-26 14:10:34 +01:00
Родитель 3d47d57093
Коммит accbc78735
2 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@ -12,13 +12,14 @@
<AssemblyName>WpfTestRunner</AssemblyName>
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
<FileAlignment>512</FileAlignment>
<TestRunnerCommand>bin\WpfTestRunner.exe</TestRunnerCommand>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<PlatformTarget>x86</PlatformTarget>
<DebugSymbols>True</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>False</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<OutputPath>bin\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
@ -27,7 +28,7 @@
<PlatformTarget>x86</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>True</Optimize>
<OutputPath>bin\Release\</OutputPath>
<OutputPath>bin\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>

Просмотреть файл

@ -18,9 +18,8 @@ namespace WpfTestRunner
list.Add ("-domain=None");
list.Add ("-noshadow");
list.Add ("-nothread");
list.Add ("-xml=result.xml");
// list.Add ("/run=Xwt.NinePatchTests");
list.Add (typeof (Program).Assembly.Location);
if (!list.Contains (typeof (Program).Assembly.Location))
list.Add (typeof (Program).Assembly.Location);
NUnit.ConsoleRunner.Runner.Main (list.ToArray ());
ReferenceImageManager.ShowImageVerifier ();
}