public void CanParse_Positive(params string[] args)
        {
            // Act
            var actualValue = rectangularEnvelopeParser.CanParse(args);

            // Assert
            Assert.True(actualValue);
        }
Ejemplo n.º 2
0
        public IEnvelope[] Parse(string[] args)
        {
            if (!rectangularEnvelopeParser.CanParse(args))
            {
                throw new FormatException("Input data must be in format <WidthA> <HeightA> <WidthB> <HeightB>");
            }

            var envelopes = rectangularEnvelopeParser.Parse(args);

            return(envelopes);
        }