Mercurial > pub > ImplabNet
annotate Implab.Test/Implab.Test.mono.csproj @ 203:4d9830a9bbb8 v2
Added 'Fail' method to RunnableComponent which allows component to move from
Running to Failed state.
Added PollingComponent a timer based runnable component
More tests
Added FailPromise a thin class to wrap exceptions
Fixed error handling in SuccessPromise classes.
author | cin |
---|---|
date | Tue, 18 Oct 2016 17:49:54 +0300 |
parents | 822aab37b107 |
children | 8200ab154c8a |
rev | line source |
---|---|
77 | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
3 <PropertyGroup> | |
4 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | |
5 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | |
6 <ProductVersion>8.0.30703</ProductVersion> | |
7 <SchemaVersion>2.0</SchemaVersion> | |
8 <ProjectGuid>{2BD05F84-E067-4B87-9477-FDC2676A21C6}</ProjectGuid> | |
9 <OutputType>Library</OutputType> | |
10 <RootNamespace>Implab.Test</RootNamespace> | |
11 <AssemblyName>Implab.Test</AssemblyName> | |
12 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion> | |
151 | 13 <ReleaseVersion>0.2</ReleaseVersion> |
77 | 14 </PropertyGroup> |
15 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | |
16 <DebugSymbols>true</DebugSymbols> | |
17 <DebugType>full</DebugType> | |
18 <Optimize>false</Optimize> | |
19 <OutputPath>bin\Debug</OutputPath> | |
20 <DefineConstants>DEBUG;MONO</DefineConstants> | |
21 <ErrorReport>prompt</ErrorReport> | |
22 <WarningLevel>4</WarningLevel> | |
23 <ConsolePause>false</ConsolePause> | |
24 </PropertyGroup> | |
25 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | |
26 <Optimize>true</Optimize> | |
27 <OutputPath>bin\Release</OutputPath> | |
28 <ErrorReport>prompt</ErrorReport> | |
29 <WarningLevel>4</WarningLevel> | |
30 <ConsolePause>false</ConsolePause> | |
31 <DefineConstants>MONO</DefineConstants> | |
32 </PropertyGroup> | |
33 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug 4.5|AnyCPU' "> | |
34 <DebugSymbols>true</DebugSymbols> | |
35 <DebugType>full</DebugType> | |
36 <Optimize>false</Optimize> | |
37 <OutputPath>bin\Debug</OutputPath> | |
38 <DefineConstants>DEBUG;TRACE;NET_4_5;MONO</DefineConstants> | |
39 <ErrorReport>prompt</ErrorReport> | |
40 <WarningLevel>4</WarningLevel> | |
41 <ConsolePause>false</ConsolePause> | |
42 </PropertyGroup> | |
43 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release 4.5|AnyCPU' "> | |
44 <Optimize>true</Optimize> | |
45 <OutputPath>bin\Release</OutputPath> | |
46 <DefineConstants>NET_4_5;MONO</DefineConstants> | |
47 <ErrorReport>prompt</ErrorReport> | |
48 <WarningLevel>4</WarningLevel> | |
49 <ConsolePause>false</ConsolePause> | |
50 </PropertyGroup> | |
51 <ItemGroup> | |
52 <Reference Include="System" /> | |
53 <Reference Include="nunit.framework" /> | |
54 </ItemGroup> | |
55 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> | |
56 <ItemGroup> | |
57 <Compile Include="AsyncTests.cs" /> | |
58 <Compile Include="PromiseHelper.cs" /> | |
59 <Compile Include="Properties\AssemblyInfo.cs" /> | |
145 | 60 <Compile Include="CancelationTests.cs" /> |
185 | 61 <Compile Include="RunnableComponentTests.cs" /> |
203
4d9830a9bbb8
Added 'Fail' method to RunnableComponent which allows component to move from
cin
parents:
185
diff
changeset
|
62 <Compile Include="PollingComponentTests.cs" /> |
4d9830a9bbb8
Added 'Fail' method to RunnableComponent which allows component to move from
cin
parents:
185
diff
changeset
|
63 <Compile Include="Mock\MockRunnableComponent.cs" /> |
4d9830a9bbb8
Added 'Fail' method to RunnableComponent which allows component to move from
cin
parents:
185
diff
changeset
|
64 <Compile Include="Mock\MockPollingComponent.cs" /> |
77 | 65 </ItemGroup> |
66 <ItemGroup> | |
67 <ProjectReference Include="..\Implab\Implab.csproj"> | |
68 <Project>{F550F1F8-8746-4AD0-9614-855F4C4B7F05}</Project> | |
69 <Name>Implab</Name> | |
70 </ProjectReference> | |
71 </ItemGroup> | |
203
4d9830a9bbb8
Added 'Fail' method to RunnableComponent which allows component to move from
cin
parents:
185
diff
changeset
|
72 <ItemGroup> |
4d9830a9bbb8
Added 'Fail' method to RunnableComponent which allows component to move from
cin
parents:
185
diff
changeset
|
73 <Folder Include="Mock\" /> |
4d9830a9bbb8
Added 'Fail' method to RunnableComponent which allows component to move from
cin
parents:
185
diff
changeset
|
74 </ItemGroup> |
77 | 75 </Project> |