public void CanPrintMacaroon()
        {
            var m = new Macaroon(Location, Secret, Identifier);
            var s = m.ToString();

            Assert.Equal(Location, s);
        }
Esempio n. 2
0
        public void CanPrintMacaroon()
        {
            // Arrange
            Macaroon m = new Macaroon(Location, Secret, Identifier);

            // Act
            string s = m.ToString();

            // Assert
            Assert.AreEqual(Location, s);
        }