public void TestSourcePath() { string name = new UnitTestFrameworkNamer().SourcePath; var path = name.ToLower() + "\\VsTestStackTraceNamerTests.cs"; Assert.IsTrue(File.Exists(path), path + " does not exist" ); }
public void TestSourcePath() { string name = new UnitTestFrameworkNamer().SourcePath; var path = name.ToLower() + "\\"+ this.GetType().Name+".cs"; Assert.IsTrue(File.Exists(path), path + " does not exist"); }