public void GetPhoneNumber_ThrowException_Verify()
        {
            // Arrange
            ShimSqlCommand.Constructor = _ =>
            {
                new ShimSqlCommand(_)
                {
                    InstanceBehavior = ShimBehaviors.Fallthrough,
                    ExecuteScalar    = () =>
                    {
                        ExecuteScalar = true;
                        Disposed++;
                        throw new InvalidOperationException("something wrong");
                    }
                };
            };

            // Act
            Action = () => Instance.GetPhoneNumber();

            // Assert
            Action.ShouldThrow <InvalidOperationException>().Message.ShouldBe("something wrong");
            this.ShouldSatisfyAllConditions(
                () => ExecuteScalar.ShouldBeTrue(),
                () => ConnectionOpen.ShouldBeTrue(),
                () => Disposed.ShouldBe(1));
        }
        public void GetPhoneNumber_WhenCalledWithVoidMethod_Verify()
        {
            // Arrange, Act
            Instance.GetPhoneNumber();

            // Assert
            this.ShouldSatisfyAllConditions(
                () => Records.Count.ShouldBe(15),
                () => Instance.Id.ShouldHaveSingleItem());
            this.ShouldSatisfyAllConditions(
                () => Records.ShouldContain(Tuple.Create("Area", "0121", DbType.String, (Object)null)),
                () => Records.ShouldContain(Tuple.Create("Area", "0122", DbType.String, (Object)null)),
                () => Records.ShouldContain(Tuple.Create("Area", "0123", DbType.String, (Object)null)),
                () => Records.ShouldContain(Tuple.Create("Area", "0124", DbType.String, (Object)null)),
                () => Records.ShouldContain(Tuple.Create("Major", "3455", DbType.String, (Object)null)),
                () => Records.ShouldContain(Tuple.Create("Major", "3456", DbType.String, (Object)null)),
                () => Records.ShouldContain(Tuple.Create("Major", "3457", DbType.String, (Object)null)),
                () => Records.ShouldContain(Tuple.Create("Major", "3458", DbType.String, (Object)null)),
                () => Records.ShouldContain(Tuple.Create("Major", "3459", DbType.String, (Object)null)),
                () => Records.ShouldContain(Tuple.Create("Major", "34510", DbType.String, (Object)null)),
                () => Records.ShouldContain(Tuple.Create("Major", "34511", DbType.String, (Object)null)),
                () => Records.ShouldContain(Tuple.Create("Major", "345", DbType.String, (Object)null)),
                () => Records.ShouldContain(Tuple.Create("Minor", "6789", DbType.String, (Object)null)),
                () => Records.ShouldContain(Tuple.Create("ToString", "(012)345-6789--Area: 012Major: 345MinorMinor: 6789", DbType.String, (Object)null)),
                () => Records.ShouldContain(Tuple.Create("FizzBuzz", "FizzBuzz", DbType.String, (Object)null)),
                () => ConnectionClosed.ShouldBeTrue(),
                () => ExecuteScalar.ShouldBeTrue(),
                () => ConnectionOpen.ShouldBeTrue(),
                () => Disposed.ShouldBe(1),
                () => Instance.Id.ShouldContain(1));
        }
        public void GetPhoneNumber_WhenCalled_Verify(bool voidMethod)
        {
            // Arrange, Act
            if (voidMethod)
            {
                Instance.GetPhoneNumber();
            }
            else
            {
                Instance.SavePhoneNumber();
            }

            // Assert
            this.ShouldSatisfyAllConditions(
                () => Instance.Id.ShouldHaveSingleItem(),
                () => Records.Count.ShouldBeGreaterThanOrEqualTo(2));

            if (CheckParameter("True"))
            {
                Records.Count.ShouldBe(15);
                this.ShouldSatisfyAllConditions(
                    () => Records.ShouldContain(Tuple.Create("Area", "0121", DbType.String, (Object)null)),
                    () => Records.ShouldContain(Tuple.Create("Area", "0122", DbType.String, (Object)null)),
                    () => Records.ShouldContain(Tuple.Create("Area", "0123", DbType.String, (Object)null)),
                    () => Records.ShouldContain(Tuple.Create("Area", "0124", DbType.String, (Object)null)),
                    () => Records.ShouldContain(Tuple.Create("Major", "3455", DbType.String, (Object)null)),
                    () => Records.ShouldContain(Tuple.Create("Major", "3456", DbType.String, (Object)null)),
                    () => Records.ShouldContain(Tuple.Create("Major", "3457", DbType.String, (Object)null)),
                    () => Records.ShouldContain(Tuple.Create("Major", "3458", DbType.String, (Object)null)),
                    () => Records.ShouldContain(Tuple.Create("Major", "3459", DbType.String, (Object)null)),
                    () => Records.ShouldContain(Tuple.Create("Major", "34510", DbType.String, (Object)null)),
                    () => Records.ShouldContain(Tuple.Create("Major", "34511", DbType.String, (Object)null)),
                    () => Records.ShouldContain(Tuple.Create("Major", "345", DbType.String, (Object)null)),
                    () => Records.ShouldContain(Tuple.Create("Minor", "6789", DbType.String, (Object)null)),
                    () => Records.ShouldContain(Tuple.Create("ToString", "(012)345-6789--Area: 012Major: 345MinorMinor: 6789", DbType.String, (Object)null)),
                    () => Records.ShouldContain(Tuple.Create("FizzBuzz", "FizzBuzz", DbType.String, (Object)null)),
                    () => ConnectionClosed.ShouldBeTrue(),
                    () => ExecuteScalar.ShouldBeTrue(),
                    () => ConnectionOpen.ShouldBeTrue(),
                    () => Disposed.ShouldBe(1),
                    () => Instance.Id.ShouldContain(1));
            }

            if (CheckParameter("False"))
            {
                this.ShouldSatisfyAllConditions(
                    () => ShouldContain(Records, "Parameter1", "", DbType.String, (string)null),
                    () => ShouldContain(Records, "FizzBuzz", "FizzBuzz", DbType.String, (string)null),
                    () => Instance.Id.ShouldContain(111));
            }
        }
 protected virtual void RaiseConnectionOpen()
 {
     ConnectionOpen?.Invoke(this, EventArgs.Empty);
 }
Exemplo n.º 5
0
 private void RaiseConnectionOpen()
 {
     ConnectionOpen?.Invoke(this, EventArgs.Empty);
 }
Exemplo n.º 6
0
 public virtual void ConnectionOpen(C context, ConnectionOpen mystruct)
 {
 }
Exemplo n.º 7
0
 protected override void OnOpen()
 {
     base.OnOpen();
     ConnectionOpen?.Invoke(this);
 }