Пример #1
0
        public TestApplication([NotNull] ICommandLineEngine commandLineEngine, [NotNull] IApplicationVerification application)
            : base(commandLineEngine)
        {
            if (application == null)
            {
                throw new ArgumentNullException(nameof(application));
            }

            this.application = application;
        }