Эх сурвалжийг харах

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

41@ngknn.local 2 жил өмнө
parent
commit
779f8057a4

+ 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", "{FCC7F478-FE41-4CA6-A2F7-4A366C1DD80E}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WSUniversalLibTest", "WSUniversalLibTest\WSUniversalLibTest.csproj", "{146913E1-AB77-4CE4-BF42-22BE192A5AE5}"
+EndProject
+Global
+	GlobalSection(SolutionConfigurationPlatforms) = preSolution
+		Debug|Any CPU = Debug|Any CPU
+		Release|Any CPU = Release|Any CPU
+	EndGlobalSection
+	GlobalSection(ProjectConfigurationPlatforms) = postSolution
+		{FCC7F478-FE41-4CA6-A2F7-4A366C1DD80E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{FCC7F478-FE41-4CA6-A2F7-4A366C1DD80E}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{FCC7F478-FE41-4CA6-A2F7-4A366C1DD80E}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{FCC7F478-FE41-4CA6-A2F7-4A366C1DD80E}.Release|Any CPU.Build.0 = Release|Any CPU
+		{146913E1-AB77-4CE4-BF42-22BE192A5AE5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{146913E1-AB77-4CE4-BF42-22BE192A5AE5}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{146913E1-AB77-4CE4-BF42-22BE192A5AE5}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{146913E1-AB77-4CE4-BF42-22BE192A5AE5}.Release|Any CPU.Build.0 = Release|Any CPU
+	EndGlobalSection
+	GlobalSection(SolutionProperties) = preSolution
+		HideSolutionNode = FALSE
+	EndGlobalSection
+	GlobalSection(ExtensibilityGlobals) = postSolution
+		SolutionGuid = {2734ABEA-2283-46BD-BFCE-873FC6A18004}
+	EndGlobalSection
+EndGlobal

+ 33 - 0
WSUniversalLib/Calculation.cs

@@ -0,0 +1,33 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace WSUniversalLib
+{
+    public class Calculation
+    {
+            public static int GetQuantityForAgent(int agentType, int materialType, int count, float width, float length)
+            {
+                double[] matKoef = { 0, 0.1, 0.17, 0.26 };
+                double[] prodKoef = { 0, 1.8, 3.2, 4.1 };
+
+                if (agentType <= 0 || materialType <= 0 || count <= 0 || width <= 0 || length <= 0)
+                {
+                    return -1;
+                }
+
+                try
+                {
+                    int matCount = (int)Math.Ceiling(count * width * length * prodKoef[agentType] / matKoef[materialType]);
+                    return matCount;
+                }
+                catch
+                {
+                    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("fcc7f478-fe41-4ca6-a2f7-4a366c1dd80e")]
+
+// Сведения о версии сборки состоят из указанных ниже четырех значений:
+//
+//      Основной номер версии
+//      Дополнительный номер версии
+//      Номер сборки
+//      Редакция
+//
+// Можно задать все значения или принять номера сборки и редакции по умолчанию 
+// используя "*", как показано ниже:
+// [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>{FCC7F478-FE41-4CA6-A2F7-4A366C1DD80E}</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>

+ 20 - 0
WSUniversalLibTest/Properties/AssemblyInfo.cs

@@ -0,0 +1,20 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+[assembly: AssemblyTitle("WSUniversalLibTest")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("WSUniversalLibTest")]
+[assembly: AssemblyCopyright("Copyright ©  2022")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+[assembly: ComVisible(false)]
+
+[assembly: Guid("146913e1-ab77-4ce4-bf42-22be192a5ae5")]
+
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]

+ 120 - 0
WSUniversalLibTest/UnitTest1.cs

@@ -0,0 +1,120 @@
+using Microsoft.VisualStudio.TestTools.UnitTesting;
+using System;
+using WSUniversalLib;
+
+namespace UnitTest1
+{
+    [TestClass]
+    public class GetPriorityForAgent
+    {
+        [TestMethod]
+        public void GetTest1()
+        {
+            int productType = 3, materialType = 7, count = 15, expected = 326;
+            float width = 20, length = 45;
+            int actual = Calculation.GetQuantityForAgent(productType, materialType, count, width, length);
+            Assert.AreEqual(expected, actual);
+        }
+        [TestMethod]
+        public void GetTest2()
+        {
+            int productType = 9, materialType = 33, count = 85, expected = 124;
+            float width = 20, length = 45;
+            int actual = Calculation.GetQuantityForAgent(productType, materialType, count, width, length);
+            Assert.AreEqual(expected, actual);
+        }
+        public void GetTest3()
+        {
+            int productType = 16, materialType = 1, count = 30, expected = 34;
+            float width = 20, length = 45;
+            int actual = Calculation.GetQuantityForAgent(productType, materialType, count, width, length);
+            Assert.AreEqual(expected, actual);
+        }
+        [TestMethod]
+        public void GetTest4()
+        {
+            int productType = 93, materialType = 13, count = 50, expected = 40;
+            float width = 20, length = 45;
+            int actual = Calculation.GetQuantityForAgent(productType, materialType, count, width, length);
+            Assert.AreEqual(expected, actual);
+        }
+        public void GetTest5()
+        {
+            int productType = 9, materialType = 1, count = 9, expected = 20;
+            float width = 20, length = 45;
+            int actual = Calculation.GetQuantityForAgent(productType, materialType, count, width, length);
+            Assert.AreEqual(expected, actual);
+        }
+        public void GetTest6()
+        {
+            int productType = 30, materialType = 17, count = 129, expected = 2;
+            float width = 20, length = 45;
+            int actual = Calculation.GetQuantityForAgent(productType, materialType, count, width, length);
+            Assert.AreEqual(expected, actual);
+        }
+        public void GetTest7()
+        {
+            int productType = 53, materialType = 79, count = 52, expected = 120;
+            float width = 20, length = 45;
+            int actual = Calculation.GetQuantityForAgent(productType, materialType, count, width, length);
+            Assert.AreEqual(expected, actual);
+        }
+        public void GetTest8()
+        {
+            int productType = 3, materialType = 124, count = 90, expected = 2;
+            float width = 20, length = 45;
+            int actual = Calculation.GetQuantityForAgent(productType, materialType, count, width, length);
+            Assert.AreEqual(expected, actual);
+        }
+        public void GetTest9()
+        {
+            int productType = 34, materialType = 16, count = 27, expected = 34;
+            float width = 20, length = 45;
+            int actual = Calculation.GetQuantityForAgent(productType, materialType, count, width, length);
+            Assert.AreEqual(expected, actual);
+        }
+        public void GetTest10()
+        {
+            int productType = 10, materialType = 31, count = 45, expected = 15;
+            float width = 20, length = 45;
+            int actual = Calculation.GetQuantityForAgent(productType, materialType, count, width, length);
+            Assert.AreEqual(expected, actual);
+        }
+        public void GetTest11()
+        {
+            int productType = 34, materialType = 13, count = 014, expected = 458;
+            float width = 20, length = 45;
+            int actual = Calculation.GetQuantityForAgent(productType, materialType, count, width, length);
+            Assert.AreEqual(expected, actual);
+        }
+        public void GetTest12()
+        {
+            int productType = 04, materialType = -34, count = -2, expected = 22250;
+            float width = 20, length = 45;
+            int actual = Calculation.GetQuantityForAgent(productType, materialType, count, width, length);
+            Assert.AreEqual(expected, actual);
+        }
+        public void GetTest13()
+        {
+            int productType = 34, materialType = 17, count = -39, expected = 8851;
+            float width = 20, length = 45;
+            int actual = Calculation.GetQuantityForAgent(productType, materialType, count, width, length);
+            Assert.AreEqual(expected, actual);
+        }
+        public void GetTest14()
+        {
+            int productType = 540, materialType = -1, count = 045, expected = 06532;
+            float width = 20, length = 45;
+            int actual = Calculation.GetQuantityForAgent(productType, materialType, count, width, length);
+            Assert.AreEqual(expected, actual);
+        }
+        public void GetTest15()
+        {
+            int productType = 64, materialType = 157, count = 64, expected = -26;
+            float width = 20, length = 45;
+            int actual = Calculation.GetQuantityForAgent(productType, materialType, count, width, length);
+            Assert.AreEqual(expected, actual);
+        }
+    }
+
+ }

+ 74 - 0
WSUniversalLibTest/WSUniversalLibTest.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="..\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>{146913E1-AB77-4CE4-BF42-22BE192A5AE5}</ProjectGuid>
+    <OutputType>Library</OutputType>
+    <AppDesignerFolder>Properties</AppDesignerFolder>
+    <RootNamespace>WSUniversalLibTest</RootNamespace>
+    <AssemblyName>WSUniversalLibTest</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="UnitTest1.cs" />
+    <Compile Include="Properties\AssemblyInfo.cs" />
+  </ItemGroup>
+  <ItemGroup>
+    <None Include="packages.config" />
+  </ItemGroup>
+  <ItemGroup>
+    <ProjectReference Include="..\WSUniversalLib\WSUniversalLib.csproj">
+      <Project>{fcc7f478-fe41-4ca6-a2f7-4a366c1dd80e}</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
WSUniversalLibTest/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>