コード例 #1
0
        public static void Verify(this IMock @this)
        {
            if (@this is null)
            {
                throw new ArgumentNullException(nameof(@this));
            }

            var failures = @this.GetVerificationFailures();

            if (failures.Count > 0)
            {
                throw new VerificationException(failures);
            }
        }