aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/Tests/BasicDataServiceTest.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Move db directory out of tree.onefang2019-05-191-1/+1
|
* Dump OpenSim 0.9.0.1 into it's own branch.onefang2019-05-191-7/+7
|
* Attempt to move everything writable, and the configs, out of the bin directory.David Walter Seikel2016-11-041-1/+1
| | | | Log configs are still in the bin directory.
* Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel2016-11-031-0/+3
|
* Fix database service unit test failures by temporarily reverting ↵Justin Clark-Casey (justincc)2012-11-261-1/+7
| | | | | | | | | BasicDataServiceTest extending OpenSimTestCase. Mono 2.4.3 doesn't like this when running nunit, with nunit throwing AssetTests`2 : System.MemberAccessException : Cannot create an instance of OpenSim.Data.Tests.AssetTests`2[TConn,TAssetData] because Type.ContainsGenericParameters is true. and similar. Mono 2.10.8.1 does not have this issue. So will wait until min version of mono bumps before restoring.
* Consistenly make NUnit test cases inherit from OpenSimTestCase which ↵Justin Clark-Casey (justincc)2012-11-241-1/+2
| | | | automatically turns off any logging enabled between tests
* Formatting cleanup.Jeff Ames2010-09-121-5/+5
|
* Add copyright headers.Jeff Ames2010-09-121-1/+28
|
* Ensured that tests are skipped for wrong conn string, also m_log chngAlexRa2010-05-231-2/+23
| | | | | | | | | | The base test class now tries to connect to DB, ignores all tests in the class if unable to. Also m_log changed to instance field (which in this case shouldn't cause any problems), to avoid having to define it separately in each derived class. Here I touched things that I don't understand well (using log4net), so please review this commit.
* Various minor changes in the data testsAlexRa2010-05-231-1/+2
|
* Minor corrections in BasicDataServiceTest.csAlexRa2010-05-231-0/+41
| | | | | (added more functions for cleaning up DB from the derived tests)
* Added generic base classes for testing database servicesAlexRa2010-05-231-0/+171
These are some generic classes that simplify writing tests for any of the data connectors and databases. Among other things, configuring the connection strings is done once, in a separate resource file. Tests based on the new BasicDataServiceTest class require NUnit 2.5 or better.