예제 #1
0
        public void should_equal_token_with_same_name()
        {
            var token1 = new GitAliasToken {Name = "test"};
            var token2 = new GitAliasToken { Name = "test" };

            token1.ShouldEqual(token2);
        }