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); }
public bool Equals(FubuBottleDestination other) { if (ReferenceEquals(null, other)) return false; if (ReferenceEquals(this, other)) return true; return Equals(other._physicalPath, _physicalPath); }