public void ContractIdToLongType()
        {
            var id = ContractProductReaderStub.ReadContractId();

            var result = ContractProductValidator.ContractIdToLongType(id);

            Assert.AreEqual(typeof(long), result.GetType());
        }
        public void ContractId()
        {
            var id = ContractProductReaderStub.ReadContractId();

            var result = ContractProductValidator.ContractId(id);

            Assert.AreEqual(1, result);
        }
        public void IsContractIdNotNull()
        {
            var id = ContractProductReaderStub.ReadContractId();

            var result = ContractProductValidator.IsContractIdNotNull(id);

            Assert.IsTrue(result);
        }