Ejemplo n.º 1
0
        public void WhatIsYourTokenTest()
        {
            var svc    = new RedPill();
            var output = svc.WhatIsYourToken();

            Assert.AreEqual(output, new Guid("19c6e11c-a8d8-458f-a5fa-2dcfaa935684"));
        }
Ejemplo n.º 2
0
        public void WhatIsYourToken_Returns_My_Token()
        {
            // Arrange
            var myToken = new Guid("339d7ee0-0b07-4748-b8d9-2b8826775390");

            IRedPill redPillService = new RedPill();

            // Act
            var token = redPillService.WhatIsYourToken();

            // Assert
            Assert.AreEqual(myToken, token);
        }