public void DeletePortGroupCodec_EmptyObjectId_Failure()
        {
            var res = PortGroupCodec.DeletePortGroupCodec(_mockServer, "portgroupobjectid", "");

            Assert.IsFalse(res.Success, "Static call to DeletePortGroupCodec did not fail with empty objectid");
        }
        public void DeletePortGroupCodec_InvalidPortGroupAndObjectId_Failure()
        {
            var res = PortGroupCodec.DeletePortGroupCodec(_connectionServer, "portgroupobjectid", "objectid");

            Assert.IsFalse(res.Success, "Static call to DeletePortGroupCodec did not fail with invalid port group and objectid");
        }
        public void DeletePortGroupCodec_NullConnectionServer_Failure()
        {
            var res = PortGroupCodec.DeletePortGroupCodec(null, "portgroupobjectid", "objectid");

            Assert.IsFalse(res.Success, "Static call to AddPortGroupCodec did not fail with null connection server");
        }