瀏覽代碼

дарова

Никита Мелузов 2 年之前
父節點
當前提交
d21548829a

+ 177 - 0
UnitTestProject1/CalculationTest.cs

@@ -0,0 +1,177 @@
+using Microsoft.VisualStudio.TestTools.UnitTesting;
+using System;
+using WSUniversalLib;
+
+namespace UnitTestProject1
+{   
+        [TestClass]
+        public class CalculationTest
+        {
+            [TestMethod]
+            public void Check_AgentTypeNonExist()
+            {
+                int rezult = -1;
+
+                Calculation calc = new Calculation();
+                int actual = calc.GetPriorityForAgent(4, 32, 14);
+
+                Assert.AreEqual(rezult, actual);
+            }
+
+            [TestMethod]
+            public void Check_YongAgentTypeNonExist()
+            {
+                int rezult = -1;
+
+                Calculation calc = new Calculation();
+                int actual = calc.GetPriorityForAgent(4, 21, 1);
+
+                Assert.AreEqual(rezult, actual);
+            }
+
+            [TestMethod]
+            public void Check_YongAgnetType1EasyTest()
+            {
+                int rezult = 4;
+
+                Calculation calc = new Calculation();
+                int actual = calc.GetPriorityForAgent(1, 23, 2);
+
+                Assert.AreEqual(rezult, actual);
+            }
+
+            [TestMethod]
+            public void Check_YongAgnetType2EasyTest()
+            {
+                int rezult = 7;
+
+                Calculation calc = new Calculation();
+                int actual = calc.GetPriorityForAgent(2, 23, 2);
+
+                Assert.AreEqual(rezult, actual);
+            }
+
+            [TestMethod]
+            public void Check_YongAgnetType3EasyTest()
+            {
+                int rezult = 9;
+
+                Calculation calc = new Calculation();
+                int actual = calc.GetPriorityForAgent(3, 23, 2);
+
+                Assert.AreEqual(rezult, actual);
+            }
+
+            [TestMethod]
+            public void Check_AgentType1Exp12EasyTest()
+            {
+                int rezult = 28;
+
+                Calculation calc = new Calculation();
+                int actual = calc.GetPriorityForAgent(1, 32, 12);
+
+                Assert.AreEqual(rezult, actual);
+            }
+
+            [TestMethod]
+            public void Check_AgentType2Exp21EasyTest()
+            {
+                int rezult = 82;
+
+                Calculation calc = new Calculation();
+                int actual = calc.GetPriorityForAgent(2, 35, 21);
+
+                Assert.AreEqual(rezult, actual);
+            }
+
+            [TestMethod]
+            public void Check_AgentType3Exp40EasyTest()
+            {
+                int rezult = 200;
+
+                Calculation calc = new Calculation();
+                int actual = calc.GetPriorityForAgent(3, 55, 40);
+
+                Assert.AreEqual(rezult, actual);
+            }
+
+            [TestMethod]
+            public void Check_AgentType1Exp45EasyTest()
+            {
+                int rezult = 122;
+
+                Calculation calc = new Calculation();
+                int actual = calc.GetPriorityForAgent(1, 55, 45);
+
+                Assert.AreEqual(rezult, actual);
+            }
+
+            [TestMethod]
+            public void Check_AgentType2Exp16EasyTest()
+            {
+                int rezult = 59;
+
+                Calculation calc = new Calculation();
+                int actual = calc.GetPriorityForAgent(2, 35, 16);
+
+                Assert.AreEqual(rezult, actual);
+            }
+
+            [TestMethod]
+            public void Check_YongAgnetType1HardTest()
+            {
+                int rezult = 3;
+
+                Calculation calc = new Calculation();
+                int actual = calc.GetPriorityForAgent(1, (float)21.5, (float)1.5);
+
+                Assert.AreEqual(rezult, actual);
+            }
+
+            [TestMethod]
+            public void Check_YongAgnetType3HardTest()
+            {
+                int rezult = 11;
+
+                Calculation calc = new Calculation();
+                int actual = calc.GetPriorityForAgent(3, (float)21.5, (float)2.5);
+
+                Assert.AreEqual(rezult, actual);
+            }
+
+            [TestMethod]
+            public void Check_AgnetType1HardTest()
+            {
+                int rezult = 29;
+
+                Calculation calc = new Calculation();
+                int actual = calc.GetPriorityForAgent(1, (float)33.7, (float)12.7);
+
+                Assert.AreEqual(rezult, actual);
+            }
+
+            [TestMethod]
+            public void Check_AgnetType2HardTest()
+            {
+                int rezult = 106;
+
+                Calculation calc = new Calculation();
+                int actual = calc.GetPriorityForAgent(2, (float)45.7, (float)27.2);
+
+                Assert.AreEqual(rezult, actual);
+            }
+
+            [TestMethod]
+            public void Check_AgnetType3HardTest()
+            {
+                int rezult = 213;
+
+                Calculation calc = new Calculation();
+                int actual = calc.GetPriorityForAgent(3, (float)55.9, (float)42.6);
+
+                Assert.AreEqual(rezult, actual);
+            }
+
+        }
+    
+}

+ 20 - 0
UnitTestProject1/Properties/AssemblyInfo.cs

@@ -0,0 +1,20 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+[assembly: AssemblyTitle("UnitTestProject1")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("UnitTestProject1")]
+[assembly: AssemblyCopyright("Copyright ©  2022")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+[assembly: ComVisible(false)]
+
+[assembly: Guid("47f2e20b-7857-47e6-8eec-71c16d15bf97")]
+
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]

+ 74 - 0
UnitTestProject1/UnitTestCalculation.csproj

@@ -0,0 +1,74 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+  <Import Project="..\WSUniversalLib\packages\MSTest.TestAdapter.2.1.1\build\net45\MSTest.TestAdapter.props" Condition="Exists('..\WSUniversalLib\packages\MSTest.TestAdapter.2.1.1\build\net45\MSTest.TestAdapter.props')" />
+  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
+  <PropertyGroup>
+    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+    <ProjectGuid>{47F2E20B-7857-47E6-8EEC-71C16D15BF97}</ProjectGuid>
+    <OutputType>Library</OutputType>
+    <AppDesignerFolder>Properties</AppDesignerFolder>
+    <RootNamespace>UnitTestProject1</RootNamespace>
+    <AssemblyName>UnitTestProject1</AssemblyName>
+    <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
+    <FileAlignment>512</FileAlignment>
+    <ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
+    <VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">15.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>
+    <NuGetPackageImportStamp>
+    </NuGetPackageImportStamp>
+  </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>
+  </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>
+  </PropertyGroup>
+  <ItemGroup>
+    <Reference Include="Microsoft.VisualStudio.TestPlatform.TestFramework, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
+      <HintPath>..\WSUniversalLib\packages\MSTest.TestFramework.2.1.1\lib\net45\Microsoft.VisualStudio.TestPlatform.TestFramework.dll</HintPath>
+    </Reference>
+    <Reference Include="Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
+      <HintPath>..\WSUniversalLib\packages\MSTest.TestFramework.2.1.1\lib\net45\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll</HintPath>
+    </Reference>
+    <Reference Include="System" />
+    <Reference Include="System.Core" />
+  </ItemGroup>
+  <ItemGroup>
+    <Compile Include="CalculationTest.cs" />
+    <Compile Include="Properties\AssemblyInfo.cs" />
+  </ItemGroup>
+  <ItemGroup>
+    <None Include="packages.config" />
+  </ItemGroup>
+  <ItemGroup>
+    <ProjectReference Include="..\WSUniversalLib\WSUniversalLib.csproj">
+      <Project>{bdadcf3d-7447-4ac5-ba6d-c5c02273846c}</Project>
+      <Name>WSUniversalLib</Name>
+    </ProjectReference>
+  </ItemGroup>
+  <Import Project="$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets" Condition="Exists('$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets')" />
+  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
+  <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
+    <PropertyGroup>
+      <ErrorText>Данный проект ссылается на пакеты NuGet, отсутствующие на этом компьютере. Используйте восстановление пакетов NuGet, чтобы скачать их.  Дополнительную информацию см. по адресу: http://go.microsoft.com/fwlink/?LinkID=322105. Отсутствует следующий файл: {0}.</ErrorText>
+    </PropertyGroup>
+    <Error Condition="!Exists('..\WSUniversalLib\packages\MSTest.TestAdapter.2.1.1\build\net45\MSTest.TestAdapter.props')" Text="$([System.String]::Format('$(ErrorText)', '..\WSUniversalLib\packages\MSTest.TestAdapter.2.1.1\build\net45\MSTest.TestAdapter.props'))" />
+    <Error Condition="!Exists('..\WSUniversalLib\packages\MSTest.TestAdapter.2.1.1\build\net45\MSTest.TestAdapter.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\WSUniversalLib\packages\MSTest.TestAdapter.2.1.1\build\net45\MSTest.TestAdapter.targets'))" />
+  </Target>
+  <Import Project="..\WSUniversalLib\packages\MSTest.TestAdapter.2.1.1\build\net45\MSTest.TestAdapter.targets" Condition="Exists('..\WSUniversalLib\packages\MSTest.TestAdapter.2.1.1\build\net45\MSTest.TestAdapter.targets')" />
+</Project>

+ 5 - 0
UnitTestProject1/packages.config

@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="utf-8"?>
+<packages>
+  <package id="MSTest.TestAdapter" version="2.1.1" targetFramework="net472" />
+  <package id="MSTest.TestFramework" version="2.1.1" targetFramework="net472" />
+</packages>