Wpf unit test fix to be more like Gtk
This commit is contained in:
Родитель
3d47d57093
Коммит
accbc78735
|
@ -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 ();
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче