예제 #1
0
        public void Thanos_IsAPerson()
        {
            thanos = new Common.Thanos();
            var sut = thanos is IPerson;

            sut.Should().BeTrue();
        }
예제 #2
0
        public void Thanos_CanWear_TheGauntlet()
        {
            thanos = new Common.Thanos();

            thanos.WearInfinityGauntlet();

            thanos.IsWearingInfinityGauntlet.Should().BeTrue();
        }