UnitTest1.cs 432 B

123456789101112131415161718192021
  1. using Microsoft.VisualStudio.TestTools.UnitTesting;
  2. using System;
  3. using Zam;
  4. namespace UnitTest
  5. {
  6. [TestClass]
  7. public class UnitTest1
  8. {
  9. [TestMethod]
  10. public void TestGetPercentMoney()
  11. {
  12. var cont = new User_contribution(1, 750000);
  13. int result = cont.Get_persentMoney();
  14. int expected = 99750;
  15. Assert.AreEqual(expected, result);
  16. }
  17. }
  18. }