Ejemplo n.º 1
0
        public void IsAssignableToString()
        {
            ShortcutPath shortcutPath = new ShortcutPath(Path);

            string path = shortcutPath;

            path.Should().Be(Path);
        }
Ejemplo n.º 2
0
        public void IsAssignableFromString()
        {
            ShortcutPath shortcutPath = Path;

            shortcutPath.Value.Should().Be(Path);
        }
Ejemplo n.º 3
0
        public void RepresentsAShortcutPath()
        {
            var shortcutPath = new ShortcutPath(Path);

            shortcutPath.Value.Should().Be(Path);
        }
Ejemplo n.º 4
0
        public void RepresentsAShortcutPath()
        {
            var shortcutPath = new ShortcutPath(Path);

            shortcutPath.Value.Should().Be(Path);
        }
Ejemplo n.º 5
0
 protected bool Equals(ShortcutPath other)
 {
     return(string.Equals(this.Value, other.Value));
 }
Ejemplo n.º 6
0
 protected bool Equals(ShortcutPath other)
 {
     return string.Equals(this.Value, other.Value);
 }