Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions LibSVMSharp.Tests/Contants.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace LibSVMSharp.Tests
namespace LibSVMSharp.Tests
{
public static class Contants
{
Expand Down
7 changes: 3 additions & 4 deletions LibSVMSharp.Tests/Extensions/TestSVMProblemExtensions.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using NUnit.Framework;

namespace LibSVMSharp.Tests.Extensions
{
[TestClass]
[TestFixture]
public class TestSVMProblemExtensions
{
[TestMethod]
[Test]
public void TestMethod1()
{
}
Expand Down
7 changes: 3 additions & 4 deletions LibSVMSharp.Tests/Helpers/TestSVMHelper.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using NUnit.Framework;

namespace LibSVMSharp.Tests.Helpers
{
[TestClass]
[TestFixture]
public class TestSVMHelper
{
[TestMethod]
[Test]
public void TestMethod1()
{
}
Expand Down
7 changes: 3 additions & 4 deletions LibSVMSharp.Tests/Helpers/TestSVMNodeHelper.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using NUnit.Framework;

namespace LibSVMSharp.Tests.Helpers
{
[TestClass]
[TestFixture]
public class TestSVMNodeHelper
{
[TestMethod]
[Test]
public void TestMethod1()
{
}
Expand Down
7 changes: 3 additions & 4 deletions LibSVMSharp.Tests/Helpers/TestSVMProblemHelper.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using NUnit.Framework;

namespace LibSVMSharp.Tests.Helpers
{
[TestClass]
[TestFixture]
public class TestSVMProblemHelper
{
[TestMethod]
[Test]
public void TestMethod1()
{
}
Expand Down
108 changes: 14 additions & 94 deletions LibSVMSharp.Tests/LibSVMSharp.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,101 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{2DE0BD3C-C37B-4B23-9533-2F91C1DD15C3}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>LibSVMSharp.Tests</RootNamespace>
<AssemblyName>LibSVMSharp.Tests</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
<ReferencePath>$(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages</ReferencePath>
<IsCodedUITest>False</IsCodedUITest>
<TestProjectType>UnitTest</TestProjectType>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<OutputType>Exe</OutputType>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
<RestorePackages>true</RestorePackages>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<ProjectReference Include="..\LibSVMsharp\LibSVMsharp.csproj" />
</ItemGroup>
<Choose>
<When Condition="('$(VisualStudioVersion)' == '10.0' or '$(VisualStudioVersion)' == '') and '$(TargetFrameworkVersion)' == 'v3.5'">
<ItemGroup>
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
</ItemGroup>
</When>
<Otherwise>
<ItemGroup>
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework" />
</ItemGroup>
</Otherwise>
</Choose>
<ItemGroup>
<Compile Include="Contants.cs" />
<Compile Include="Extensions\TestSVMProblemExtensions.cs" />
<Compile Include="Helpers\TestSVMHelper.cs" />
<Compile Include="Helpers\TestSVMNodeHelper.cs" />
<Compile Include="Helpers\TestSVMProblemHelper.cs" />
<Compile Include="TestSVM.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="TestSVMModel.cs" />
<Compile Include="TestSVMNode.cs" />
<Compile Include="TestSVMParameter.cs" />
<Compile Include="TestSVMProblem.cs" />
<Compile Remove="Extensions\SVMModelExtensionsTests.cs" />
<Compile Remove="Extensions\SVMNodeExtensionsTests.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\LibSVMsharp\LibSVMsharp.csproj">
<Project>{ac04337c-e542-4be9-8dbd-5b44535299e2}</Project>
<Name>LibSVMsharp</Name>
</ProjectReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
<PackageReference Include="NUnit" Version="3.13.2" />
</ItemGroup>
<ItemGroup />
<Choose>
<When Condition="'$(VisualStudioVersion)' == '10.0' And '$(IsCodedUITest)' == 'True'">
<ItemGroup>
<Reference Include="Microsoft.VisualStudio.QualityTools.CodedUITestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<Private>False</Private>
</Reference>
<Reference Include="Microsoft.VisualStudio.TestTools.UITest.Common, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<Private>False</Private>
</Reference>
<Reference Include="Microsoft.VisualStudio.TestTools.UITest.Extension, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<Private>False</Private>
</Reference>
<Reference Include="Microsoft.VisualStudio.TestTools.UITesting, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<Private>False</Private>
</Reference>
</ItemGroup>
</When>
</Choose>
<Import Project="$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets" Condition="Exists('$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets')" />
<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>
Loading