Beispiel #1
0
        public void MoreThan25Kg_WontFindParcel()
        {
            var input = new InputParcel()
            {
                Length  = 1,
                Breadth = 1,
                Height  = 1,
                Weight  = 26
            };

            var packageType = _parcelService.Identify(input);

            Assert.IsNull(packageType);
        }