Skip to content

Commit

Permalink
Adding NUnit Tests to Mono
Browse files Browse the repository at this point in the history
  • Loading branch information
tpastor committed May 10, 2013
1 parent 5729436 commit 0e71346
Show file tree
Hide file tree
Showing 9 changed files with 11,160 additions and 31 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -11,6 +11,7 @@
*.sln.docstates
*.gpState
*.userprefs
*.pidb

# Build results
[Dd]ebug/
Expand Down
93 changes: 93 additions & 0 deletions Artemis_Mono/ArtemisMonoUnitTests.csproj
@@ -0,0 +1,93 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{5D309CEA-2504-4048-AC1B-268B427AAD52}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ArtemisMonoUnitTests</RootNamespace>
<AssemblyName>ArtemisMonoUnitTests</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>TRACE;DEBUG;MONO</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE;MONO</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="nunit.framework, Version=2.6.2.12296, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>.\nunit.framework.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\Artemis_UnitTests\Component\TestBaseComponent.cs" />
<Compile Include="..\Artemis_UnitTests\Component\TestDerivedComponent.cs" />
<Compile Include="..\Artemis_UnitTests\Component\TestHealthComponent.cs" />
<Compile Include="..\Artemis_UnitTests\Component\TestPowerComponent.cs" />
<Compile Include="..\Artemis_UnitTests\Component\TestPowerComponentPoolable.cs" />
<Compile Include="..\Artemis_UnitTests\Extra\DummyPlaceHolder.cs" />
<Compile Include="..\Artemis_UnitTests\Program.cs" />
<Compile Include="..\Artemis_UnitTests\Properties\AssemblyInfo.cs" />
<Compile Include="..\Artemis_UnitTests\System\TestCommunicationSystem.cs" />
<Compile Include="..\Artemis_UnitTests\System\TestEntityComponentProcessingSystem1.cs" />
<Compile Include="..\Artemis_UnitTests\System\TestEntityComponentProcessingSystem2.cs" />
<Compile Include="..\Artemis_UnitTests\System\TestEntityProcessingSystem.cs" />
<Compile Include="..\Artemis_UnitTests\System\TestEntityProcessingSystem1.cs" />
<Compile Include="..\Artemis_UnitTests\System\TestEntityProcessingSystem2.cs" />
<Compile Include="..\Artemis_UnitTests\System\TestEntityProcessingSystem3.cs" />
<Compile Include="..\Artemis_UnitTests\System\TestNormalEntityProcessingSystem1.cs" />
<Compile Include="..\Artemis_UnitTests\System\TestNormalEntityProcessingSystem2.cs" />
<Compile Include="..\Artemis_UnitTests\System\TestNormalEntityProcessingSystem3.cs" />
<Compile Include="..\Artemis_UnitTests\System\TestProcessingSystem.cs" />
<Compile Include="..\Artemis_UnitTests\System\TestQueueHybridSystem.cs" />
<Compile Include="..\Artemis_UnitTests\System\TestQueueSystem.cs" />
<Compile Include="..\Artemis_UnitTests\System\TestQueueSystemCopy.cs" />
<Compile Include="..\Artemis_UnitTests\System\TestQueueSystemCopy2.cs" />
<Compile Include="..\Artemis_UnitTests\System\TestRenderHealthBarMultiSystem.cs" />
<Compile Include="..\Artemis_UnitTests\System\TestRenderHealthBarSingleHeavySystem.cs" />
<Compile Include="..\Artemis_UnitTests\System\TestRenderHealthBarSingleSystem.cs" />
<Compile Include="..\Artemis_UnitTests\Template\TestEntityTemplate.cs" />
<Compile Include="..\Artemis_UnitTests\TestBag.cs" />
<Compile Include="..\Artemis_UnitTests\TestEntityFactory.cs" />
<Compile Include="..\Artemis_UnitTests\TestGeneral.cs" />
<Compile Include="..\Artemis_UnitTests\TestTimeWaster.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="Artemis_Mono.csproj">
<Project>{93A803F6-64E4-4FCE-98CC-9E6101BDAC69}</Project>
<Name>Artemis_Mono</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
9 changes: 9 additions & 0 deletions Artemis_Mono/Artemis_Mono.sln
Expand Up @@ -3,6 +3,8 @@ Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Artemis_Mono", "Artemis_Mono.csproj", "{93A803F6-64E4-4FCE-98CC-9E6101BDAC69}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ArtemisMonoUnitTests", "ArtemisMonoUnitTests.csproj", "{5D309CEA-2504-4048-AC1B-268B427AAD52}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -13,6 +15,13 @@ Global
{93A803F6-64E4-4FCE-98CC-9E6101BDAC69}.Debug|Any CPU.Build.0 = Debug|Any CPU
{93A803F6-64E4-4FCE-98CC-9E6101BDAC69}.Release|Any CPU.ActiveCfg = Release|Any CPU
{93A803F6-64E4-4FCE-98CC-9E6101BDAC69}.Release|Any CPU.Build.0 = Release|Any CPU
{5D309CEA-2504-4048-AC1B-268B427AAD52}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5D309CEA-2504-4048-AC1B-268B427AAD52}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5D309CEA-2504-4048-AC1B-268B427AAD52}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5D309CEA-2504-4048-AC1B-268B427AAD52}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(MonoDevelopProperties) = preSolution
StartupItem = Artemis_Mono.csproj
Expand Down
Binary file added Artemis_Mono/nunit.framework.dll
Binary file not shown.

0 comments on commit 0e71346

Please sign in to comment.