Example #1
0
 public bool Equals(FubuBottleDestination other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(Equals(other._physicalPath, _physicalPath));
 }
 public void SetUp()
 {
     theRootFolder = "deployedPath";
     theDestination = new FubuBottleDestination(theRootFolder);
 }
Example #3
0
 public bool Equals(FubuBottleDestination other)
 {
     if (ReferenceEquals(null, other)) return false;
     if (ReferenceEquals(this, other)) return true;
     return Equals(other._physicalPath, _physicalPath);
 }