コード例 #1
0
        /// <summary>
        /// Initializes an instance of the <see cref="InputCodesCollection"/> class
        /// </summary>
        /// <param name="converter">Converter used to create cards from input</param>
        /// <param name="count">Number of codes expected from user</param>
        public InputCodesCollection(ICodeConverter converter, IUserInput userInput, int count)
        {
            if (converter == null)
            {
                throw new ArgumentNullException(nameof(converter));
            }

            if (userInput == null)
            {
                throw new ArgumentNullException(nameof(userInput));
            }

            var input = userInput.GetInput();
            var codes = input.Trim().Split((char[])null, StringSplitOptions.RemoveEmptyEntries).Distinct();

            if (codes.Count() == count)
            {
                _cards = codes.Select(code => converter.GetCard(code));
            }
            else
            {
                throw new FormatException($"Input does not contain the expected number distinct of codes. Expected {count}, Actual count was {codes.Count()}");
            }
        }