コード例 #1
0
        public void Next_ReturnsDifferentResults()
        {
            EmailAddressSource source   = new EmailAddressSource();
            string             emailOne = source.Next(null);
            string             emailTwo = source.Next(null);

            Assert.AreNotEqual(emailOne, emailTwo);
        }
コード例 #2
0
        public void Next_ReturnsDifferentResults()
        {
            EmailAddressSource source = new EmailAddressSource();
            string emailOne = source.Next(null);
            string emailTwo = source.Next(null);

            Assert.AreNotEqual(emailOne, emailTwo);
        }
コード例 #3
0
        public void Next_ReturnsString()
        {
            EmailAddressSource source = new EmailAddressSource();
            String email = source.Next(null);

            Assert.NotNull(email);
        }
コード例 #4
0
        public void Next_ReturnsString()
        {
            EmailAddressSource source = new EmailAddressSource();
            String             email  = source.Next(null);

            Assert.NotNull(email);
        }