Ejemplo n.º 1
0
        public PlayMatch(IPlaySet playSet, ISide sideOne, ISide sideTwo)
        {
            if (playSet == null)
            {
                throw new ArgumentNullException("playSet");
            }

            if (sideOne == null)
            {
                throw new ArgumentNullException("sideOne");
            }

            if (sideTwo == null)
            {
                throw new ArgumentNullException("sideTwo");
            }

            this.sideOne = sideOne;
            this.sideTwo = sideTwo;
            this.playSet = playSet;
        }
Ejemplo n.º 2
0
        public PlayMatch(IPlaySet playSet, ISide sideOne, ISide sideTwo)
        {
            if (playSet == null)
            {
                throw new ArgumentNullException("playSet");
            }

            if (sideOne == null)
            {
                throw new ArgumentNullException("sideOne");
            }

            if (sideTwo == null)
            {
                throw new ArgumentNullException("sideTwo");
            }

            this.sideOne = sideOne;
            this.sideTwo = sideTwo;
            this.playSet = playSet;
        }
Ejemplo n.º 3
0
 public void Constructor_Null_PlayGame_Contract_Checked()
 {
     //Act
     target = new PlaySet(null);
 }
Ejemplo n.º 4
0
 public void TearDown()
 {
     playGame.Verify();
     target = null;
 }
Ejemplo n.º 5
0
 public void Setup()
 {
     playGame = new Mock <IPlayGame>();
     target   = new PlaySet(playGame.Object);
 }
Ejemplo n.º 6
0
 public void TearDown()
 {
     playGame.Verify();
     target = null;
 }
Ejemplo n.º 7
0
 public void Setup()
 {
     playGame = new Mock<IPlayGame>();
     target = new PlaySet(playGame.Object);
 }
Ejemplo n.º 8
0
 public void Constructor_Null_PlayGame_Contract_Checked()
 {
     //Act
     target = new PlaySet(null);
 }
Ejemplo n.º 9
0
 public void CleanupTestMethod()
 {
     _playGame.Verify();
     _target = null;
 }
Ejemplo n.º 10
0
 public void SetupTestMethod()
 {
     _playGame = new Mock <IPlayGame>();
     _target   = new PlaySet(_playGame.Object);
 }
Ejemplo n.º 11
0
 public PlayMatch(IPlaySet playSet, ITeam sideOne, ITeam sideTwo)
 {
     TeamOne  = sideOne ?? throw new ArgumentNullException("sideOne");
     TeamTwo  = sideTwo ?? throw new ArgumentNullException("sideTwo");
     _playSet = playSet ?? throw new ArgumentNullException("playSet");
 }