aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.UnitTesting/MachineService_TST.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2019-01-09 16:41:18 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2019-01-09 16:41:18 +0200
commita15947f35cc602d26cf3f51a5c76b6ada939ea12 (patch)
tree0dbd6c979324bb0714f5dd16df05f9290dac867d /Software/Visual_Studio/Tango.UnitTesting/MachineService_TST.cs
parentaeebb8d47e1d78b50d9ae5afd9df6eaf9765ed87 (diff)
downloadTango-a15947f35cc602d26cf3f51a5c76b6ada939ea12.tar.gz
Tango-a15947f35cc602d26cf3f51a5c76b6ada939ea12.zip
Implemented job upload using JobDescriptionFile.
Diffstat (limited to 'Software/Visual_Studio/Tango.UnitTesting/MachineService_TST.cs')
-rw-r--r--Software/Visual_Studio/Tango.UnitTesting/MachineService_TST.cs28
1 files changed, 0 insertions, 28 deletions
diff --git a/Software/Visual_Studio/Tango.UnitTesting/MachineService_TST.cs b/Software/Visual_Studio/Tango.UnitTesting/MachineService_TST.cs
deleted file mode 100644
index 0edab542a..000000000
--- a/Software/Visual_Studio/Tango.UnitTesting/MachineService_TST.cs
+++ /dev/null
@@ -1,28 +0,0 @@
-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;
- }
- }
-}