Browse Source

Добавьте файлы проекта.

Данила Чирков 2 năm trước cách đây
mục cha
commit
ecf49bda5e

+ 82 - 0
UnitTest/EasyTest.cs

@@ -0,0 +1,82 @@
+using Microsoft.VisualStudio.TestTools.UnitTesting;
+using System;
+using WSUniversalLib;
+
+namespace UnitTest
+{
+    [TestClass]
+    public class EasyTest
+    {
+        [TestMethod]
+        public void GetPriorityForAgent_UsusalValue() 
+        {
+            int actual, expented;
+            actual = Calculation.GetPriorityForAgent(2, 23, 1.5f);
+            expented = 5;
+            Assert.AreEqual(expented, actual);
+        }
+
+        [TestMethod]
+        public void GetPriorityForAgent_NegatineValueAge()
+        {
+            int actual, expented;
+            actual = Calculation.GetPriorityForAgent(2, -23, 1.5f);
+            expented = -1;
+            Assert.AreEqual(expented, actual);
+        }
+
+        [TestMethod]
+        public void GetPriorityForAgent_NegatineValueExp()
+        {
+            int actual, expented;
+            actual = Calculation.GetPriorityForAgent(2, 23, -1.5f);
+            expented = -1;
+            Assert.AreEqual(expented, actual);
+        }
+
+        [TestMethod]
+        public void GetPriorityForAgent_NegatineValueType()
+        {
+            int actual, expented;
+            actual = Calculation.GetPriorityForAgent(-2, 23, 1.5f);
+            expented = -1;
+            Assert.AreEqual(expented, actual);
+        }
+
+        [TestMethod]
+        public void GetPriorityForAgent_FloatValueAge()
+        {
+            int actual, expented;
+            actual = Calculation.GetPriorityForAgent(2, 20.2f, 1);
+            expented = 3;
+            Assert.AreEqual(expented, actual);
+        }
+
+        [TestMethod]
+        public void GetPriorityForAgent_BigAge()
+        {
+            int actual, expented;
+            actual = Calculation.GetPriorityForAgent(2, 45, 1);
+            expented = 4;
+            Assert.AreEqual(expented, actual);
+        }
+
+        [TestMethod]
+        public void GetPriorityForAgent_BigExp()
+        {
+            int actual, expented;
+            actual = Calculation.GetPriorityForAgent(2, 30, 10);
+            expented = 41;
+            Assert.AreEqual(expented, actual);
+        }
+
+        [TestMethod]
+        public void GetPriorityForAgent_ZeroExp()
+        {
+            int actual, expented;
+            actual = Calculation.GetPriorityForAgent(2, 30, 0);
+            expented = -1;
+            Assert.AreEqual(expented, actual);
+        }
+    }
+}

+ 29 - 0
UnitTest/HardTest.cs

@@ -0,0 +1,29 @@
+using Microsoft.VisualStudio.TestTools.UnitTesting;
+using System;
+using WSUniversalLib;
+
+namespace UnitTest
+{
+    [TestClass]
+    public class HardTest
+    {
+        [TestMethod]
+        public void GetPriorityForAgent_UsusalBigValue()
+        {
+            int actual, expented;
+            actual = Calculation.GetPriorityForAgent(3, 100, 200);
+            expented = -1;
+            Assert.AreEqual(expented, actual);
+        }
+
+        [TestMethod]
+        public void GetPriorityForAgent_UsusalBigFloatValue()
+        {
+            int actual, expented;
+            actual = Calculation.GetPriorityForAgent(3, 30.12123f, 20.21f);
+            expented = -1;
+            Assert.AreEqual(expented, actual);
+        }
+
+    }
+}

+ 20 - 0
UnitTest/Properties/AssemblyInfo.cs

@@ -0,0 +1,20 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+[assembly: AssemblyTitle("UnitTest")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("UnitTest")]
+[assembly: AssemblyCopyright("Copyright ©  2022")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+[assembly: ComVisible(false)]
+
+[assembly: Guid("3e9f0111-2d93-4e54-b230-24f5dfd8d3df")]
+
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]

+ 75 - 0
UnitTest/UnitTest.csproj

@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+  <Import Project="..\packages\MSTest.TestAdapter.2.1.1\build\net45\MSTest.TestAdapter.props" Condition="Exists('..\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>{3E9F0111-2D93-4E54-B230-24F5DFD8D3DF}</ProjectGuid>
+    <OutputType>Library</OutputType>
+    <AppDesignerFolder>Properties</AppDesignerFolder>
+    <RootNamespace>UnitTest</RootNamespace>
+    <AssemblyName>UnitTest</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>..\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>..\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="EasyTest.cs" />
+    <Compile Include="HardTest.cs" />
+    <Compile Include="Properties\AssemblyInfo.cs" />
+  </ItemGroup>
+  <ItemGroup>
+    <None Include="packages.config" />
+  </ItemGroup>
+  <ItemGroup>
+    <ProjectReference Include="..\WSUniversalLib\WSUniversalLib.csproj">
+      <Project>{3d6681d2-80f0-499f-931b-fc171aa2ed31}</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('..\packages\MSTest.TestAdapter.2.1.1\build\net45\MSTest.TestAdapter.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\MSTest.TestAdapter.2.1.1\build\net45\MSTest.TestAdapter.props'))" />
+    <Error Condition="!Exists('..\packages\MSTest.TestAdapter.2.1.1\build\net45\MSTest.TestAdapter.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\MSTest.TestAdapter.2.1.1\build\net45\MSTest.TestAdapter.targets'))" />
+  </Target>
+  <Import Project="..\packages\MSTest.TestAdapter.2.1.1\build\net45\MSTest.TestAdapter.targets" Condition="Exists('..\packages\MSTest.TestAdapter.2.1.1\build\net45\MSTest.TestAdapter.targets')" />
+</Project>

+ 5 - 0
UnitTest/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>

+ 31 - 0
WSUniversalLib.sln

@@ -0,0 +1,31 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 16
+VisualStudioVersion = 16.0.30804.86
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WSUniversalLib", "WSUniversalLib\WSUniversalLib.csproj", "{3D6681D2-80F0-499F-931B-FC171AA2ED31}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnitTest", "UnitTest\UnitTest.csproj", "{3E9F0111-2D93-4E54-B230-24F5DFD8D3DF}"
+EndProject
+Global
+	GlobalSection(SolutionConfigurationPlatforms) = preSolution
+		Debug|Any CPU = Debug|Any CPU
+		Release|Any CPU = Release|Any CPU
+	EndGlobalSection
+	GlobalSection(ProjectConfigurationPlatforms) = postSolution
+		{3D6681D2-80F0-499F-931B-FC171AA2ED31}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{3D6681D2-80F0-499F-931B-FC171AA2ED31}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{3D6681D2-80F0-499F-931B-FC171AA2ED31}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{3D6681D2-80F0-499F-931B-FC171AA2ED31}.Release|Any CPU.Build.0 = Release|Any CPU
+		{3E9F0111-2D93-4E54-B230-24F5DFD8D3DF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{3E9F0111-2D93-4E54-B230-24F5DFD8D3DF}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{3E9F0111-2D93-4E54-B230-24F5DFD8D3DF}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{3E9F0111-2D93-4E54-B230-24F5DFD8D3DF}.Release|Any CPU.Build.0 = Release|Any CPU
+	EndGlobalSection
+	GlobalSection(SolutionProperties) = preSolution
+		HideSolutionNode = FALSE
+	EndGlobalSection
+	GlobalSection(ExtensibilityGlobals) = postSolution
+		SolutionGuid = {A3731814-C34E-47AE-8C76-DA041A84DE49}
+	EndGlobalSection
+EndGlobal

+ 93 - 0
WSUniversalLib/Calculation.cs

@@ -0,0 +1,93 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace WSUniversalLib
+{
+    public class Calculation
+    {
+        public static int GetPriorityForAgent(int agentType,float age,float experience)
+        {
+            int Prioritet;
+            if (age <= 25 && age>0 && experience>0)
+            {
+                if (experience < 3)
+                {
+                    switch (agentType)
+                    {
+                        case 1:
+                            return Convert.ToInt32((TypeAgent(agentType) + 0.1f) * experience);
+                        case 2:
+                            return Convert.ToInt32((TypeAgent(agentType) + 0.17f) * experience);
+                        case 3:
+                            return Convert.ToInt32((TypeAgent(agentType) + 0.26f) * experience);
+                        default:
+                            return -1;
+                    }
+                }
+                else
+                {
+                    if (experience>10)
+                    {
+                        return Convert.ToInt32((TypeAgent(agentType) + 0.5f) * experience);
+                    }
+                    if (experience > 20)
+                    {
+                        return Convert.ToInt32((TypeAgent(agentType) + 0.7f) * experience);
+                    }
+                    if (experience > 40)
+                    {
+                        return Convert.ToInt32((TypeAgent(agentType) + 0.9f) * experience);
+                    }
+                    if (experience < 0)
+                    {
+                        return -1;
+                    }
+                    return Convert.ToInt32((TypeAgent(agentType) + 0.9f) * experience);
+                }
+            }
+            else if (age>0 && experience > 0)
+            {
+                if (experience > 10)
+                {
+                    return Convert.ToInt32((TypeAgent(agentType) + 0.5f) * experience);
+                }
+                if (experience > 20)
+                {
+                    return Convert.ToInt32((TypeAgent(agentType) + 0.7f) * experience);
+                }
+                if (experience > 40)
+                {
+                    return Convert.ToInt32((TypeAgent(agentType) + 0.9f) * experience);
+                }
+                if (experience < 0)
+                {
+                    return -1;
+                }
+                return Convert.ToInt32((TypeAgent(agentType) + 0.9f) * experience);
+            }
+            else
+            {
+                return -1;
+            }
+        }
+
+
+        static float TypeAgent(int agentType)
+        {
+            switch (agentType)
+            {
+                case 1:
+                    return 1.8f;
+                case 2:
+                    return 3.2f;
+                case 3:
+                    return 4.1f;
+                default:
+                    return -1;
+            }
+        }
+    }
+}

+ 36 - 0
WSUniversalLib/Properties/AssemblyInfo.cs

@@ -0,0 +1,36 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// Общие сведения об этой сборке предоставляются следующим набором
+// набора атрибутов. Измените значения этих атрибутов для изменения сведений,
+// связанные со сборкой.
+[assembly: AssemblyTitle("WSUniversalLib")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("WSUniversalLib")]
+[assembly: AssemblyCopyright("Copyright ©  2022")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми
+// для компонентов COM. Если необходимо обратиться к типу в этой сборке через
+// COM, задайте атрибуту ComVisible значение TRUE для этого типа.
+[assembly: ComVisible(false)]
+
+// Следующий GUID служит для идентификации библиотеки типов, если этот проект будет видимым для COM
+[assembly: Guid("3d6681d2-80f0-499f-931b-fc171aa2ed31")]
+
+// Сведения о версии сборки состоят из указанных ниже четырех значений:
+//
+//      Основной номер версии
+//      Дополнительный номер версии
+//      Номер сборки
+//      Редакция
+//
+// Можно задать все значения или принять номера сборки и редакции по умолчанию 
+// используя "*", как показано ниже:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]

+ 48 - 0
WSUniversalLib/WSUniversalLib.csproj

@@ -0,0 +1,48 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+  <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>{3D6681D2-80F0-499F-931B-FC171AA2ED31}</ProjectGuid>
+    <OutputType>Library</OutputType>
+    <AppDesignerFolder>Properties</AppDesignerFolder>
+    <RootNamespace>WSUniversalLib</RootNamespace>
+    <AssemblyName>WSUniversalLib</AssemblyName>
+    <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
+    <FileAlignment>512</FileAlignment>
+    <Deterministic>true</Deterministic>
+  </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="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.Net.Http" />
+    <Reference Include="System.Xml" />
+  </ItemGroup>
+  <ItemGroup>
+    <Compile Include="Calculation.cs" />
+    <Compile Include="Properties\AssemblyInfo.cs" />
+  </ItemGroup>
+  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
+</Project>