Tango/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/601b8854a8be0019134ecad0f74d8ddd, branch software Twine softwares http://git.tvcloud.fr/Tango/atom/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/601b8854a8be0019134ecad0f74d8ddd?h=software 2019-08-29T13:30:09Z Remove auto homing + changing the midtank pressure calculation 2019-08-29T13:30:09Z Avi Levkovich avi@twine-s.com 2019-08-29T13:30:09Z urn:sha1:8dd7b8d63adf21c2f872074f140d9908c0925fc4 update the pitot function toget pressure with the new orifice 2019-08-15T06:28:24Z Avi Levkovich avi@twine-s.com 2019-08-15T06:28:24Z urn:sha1:04db0ce68722b5c8cd87fe6142298c8a1de4f061 and sensor. + stubs
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.PMR.Synchronization;
using Tango.PPC.Common.MachineUpdate;
using Tango.Transport.Web;

namespace Tango.UnitTesting
{
    [TestClass]
    [TestCategory("Machine Service")]
    public class MachineService_TST
    {
        [TestMethod]
        public void Check_For_Updates()
        {
            IWebTransportClient client = new WebTransportClient();
            var result = client.PostJson<CheckForUpdateRequest, CheckForUpdateResponse>("http://localhost:51581/api/PPC/CheckForUpdate", new CheckForUpdateRequest()
            {
                SerialNumber = "0000",
                Version = "0.0.0.0",
            }).Result;
        }
    }
}