1234567891011121314151617181920212223 |
- using Microsoft.VisualStudio.TestTools.UnitTesting;
- using System;
- using WSUniversalLib;
- namespace UnitTestProject1
- {
- [TestClass]
- public class UnitTest1
- {
- [TestMethod]
- public void GetQuantityForProduct()
- {
- Calculation calculation = new Calculation();
- double _agentType = calculation.agentType(1);
- float experience = 20;
- float age = 50;
- int priorite = 5;
-
-
- }
- }
- }
|