Exemple #1
0
        public void IsAssignableToString()
        {
            ShortcutPath shortcutPath = new ShortcutPath(Path);

            string path = shortcutPath;

            path.Should().Be(Path);
        }
Exemple #2
0
        public void IsAssignableFromString()
        {
            ShortcutPath shortcutPath = Path;

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

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

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