Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

I added functionality for auto-generating path names based on current class and method. This is handy in test classes where the name of the saved data should resemble the test name.

Code Block
[TestFixture]
public class NHibernateNetworkTest
{
     [Test]
     [Category("DataAccess")|Category("DataAccess")]
     public void SaveFullNetworkSchematizationWithMap()
     {
        string path = TestHelperFunctions.GetCurrentMethodName() + ".dsproj";
        //path == NHibernateNetworkTest.SaveFullNetworkSchematizationWithMap.dsproj
     }
}

This makes it easier to move tests around and keep the name consistent