aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/Tests/BasicAssetTest.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* - remove the Metadata property from AssetBase and return all previousMike Mazur2009-02-171-6/+6
| | | | | | | | | properties as before - prefix private variables with m_ in AssetBase.cs - related to Mantis #3122, as mentioned in https://lists.berlios.de/pipermail/opensim-dev/2009-February/005088.html - all services will likely need to be upgraded after this commit
* * optimized usings.lbsa712009-02-121-5/+3
|
* This changeset is the step 1 of 2 in refactoringDr Scofield2009-02-061-1/+1
| | | | | | | | | | | | | | | | | | | | OpenSim.Region.Environment into a "framework" part and a modules only part. This first changeset refactors OpenSim.Region.Environment.Scenes, OpenSim.Region.Environment.Interfaces, and OpenSim.Region.Interfaces into OpenSim.Region.Framework.{Interfaces,Scenes} leaving only region modules in OpenSim.Region.Environment. The next step will be to move region modules up from OpenSim.Region.Environment.Modules to OpenSim.Region.CoreModules and then sort out which modules are really core modules and which should move out to forge. I've been very careful to NOT BREAK anything. i hope i've succeeded. as this is the work of a whole week i hope i managed to keep track with the applied patches of the last week --- could any of you that did check in stuff have a look at whether it survived? thx!
* - add OpenSim.Framework.AssetMetadata class. AssetBase is now composed of itMike Mazur2009-02-041-10/+10
| | | | | - trim trailing whitespace
* * minor: remove warningsJustin Clarke Casey2008-09-261-1/+1
|
* let the asset tests run on MySQL. Interesting difference here, theSean Dague2008-09-241-3/+10
| | | | | | | sqlite driver can handle .Data = Null, the mysql driver can not. We should decide which is the right behavior and adjust code for it.
* couple of minor test cleanups to see if this gets us past the bamboo humpSean Dague2008-09-231-1/+1
|
* add in bits to attempt to enable log4net on these tests to help when debuggingSean Dague2008-09-191-0/+9
|
* because UUID supports equality, we can do a straight equals instead ofSean Dague2008-09-121-3/+3
| | | | | | convert to string and match.
* move the actual [Test] methods for databases to OpenSim.Data.TestsSean Dague2008-09-121-0/+104
classes. This did mean loosing 1 unit test that was actually testing an sqlite function directly instead of the interface.