Beispiel #1
0
        public void CoinTossTestNullCheck()
        {
            // ReSharper disable once AssignNullToNotNullAttribute
            // ReSharper disable once ReturnValueOfPureMethodIsNotUsed
            Action test = () => RandomEx.CoinToss(null);

            Assert.Throws <ArgumentNullException>(test);
        }