aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/Tests/SceneBaseTests.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-07-15minor: remove some mono compiler warningsJustin Clarke Casey1-1/+1
2009-06-22Update svn properties.Jeff Ames1-80/+80
2009-06-22* Added SceneTests and SceneBaseTestslbsa711-76/+80
* Changed some fields to protectesd to enable faking
2009-02-20Update svn properties, add copyright headers, minor formatting cleanup.Jeff Ames1-0/+27
2009-02-16line ending fixes and set native eol propertySean Dague1-49/+49
2009-02-14Remove the "?" that I inadvertently got into the first line Charles Krinke1-1/+1
of EstateRegionLink.cs
2009-02-14Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke1-0/+49
* Created value object for EstateRegionLink for storing the estate region relationship. * Refactored slightly NHibernateManager and NHibernateXXXXData implementations for accesing nhibernate generated ID on insert. ** Changed NHibernateManager.Save method name to Insert as it does Insert. ** Changed NHibernateManager.Save return value object as ID can be both UUID and uint currently. ** Changed NHibernateManager.Load method Id parameter to object as it can be both UUID and uint. * Created NHibernateEstateData implementation. This is the actual estate storage. * Created NHibernate mapping files for both EstateSettings and EstateRegionLink * Created MigrationSyntaxDifferences.txt files to write notes about differences in migration scripts between different databases. * Created estate storage migration scripts for all four databases. * Created estate unit test classes for all four databases. * Updated one missing field to BasicEstateTest.cs * Tested NHibernate unit tests with NUnit GUI. Asset databases fail but that is not related to this patch. * Tested build with both Visual Studio and nant. * Executed build tests with nant succesfully.