ArcGISHealthStatus.Tests.TCPCheck.TCPCheckerTest.TestServiceON C# (CSharp) Method

TestServiceON() private method

private TestServiceON ( ) : void
return void
        public void TestServiceON()
        {
            var tcpService = new TCPService()
            {
                Type = "Test",
                Name = "TestName",
                Host = "192.213.102.115",
                Port = "5151"
            };
            ServiceStatus status = checker.CheckTCPService(tcpService);
            Assert.AreEqual("ON", status.Status);
        }