GetCanonicalPath() public method

public GetCanonicalPath ( ) : string
return string
Ejemplo n.º 1
0
        public override bool Equals(object obj)
        {
            FilePath other = obj as FilePath;

            if (other == null)
            {
                return(false);
            }
            return(GetCanonicalPath() == other.GetCanonicalPath());
        }
Ejemplo n.º 2
0
        /// <exception cref="System.IO.IOException"></exception>
        protected internal virtual void AssertEqualsPath(FilePath expected, FilePath actual
			)
        {
            NUnit.Framework.Assert.AreEqual(expected.GetCanonicalPath(), actual.GetCanonicalPath
                ());
        }
Ejemplo n.º 3
0
			public override void Running(FilePath jsFile)
			{
				try
				{
					console.Println("Running: " + jsFile.GetCanonicalPath());
					this.jsFile = jsFile;
				}
				catch (IOException e)
				{
					throw new Exception(e);
				}
			}