Exemplo n.º 1
0
        public void CalculatePriceAsyncTest()
        {
            //Arrange
            string goldPrice  = "20";
            string weight     = "30";
            string discount   = "70";
            string tenantName = "Siemens";
            //Act
            var response = _printController.CalculatePriceAsync(goldPrice, weight, discount, tenantName)?.Result;

            //Assert
            Assert.AreEqual(response.GetType().Name, "OkObjectResult");
        }