aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/Tests/BasicUserTest.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* make the asserts spit out messages about their test namesSean Dague2009-04-131-127/+127
|
* * minor: Remove most mono compiler warningsJustin Clarke Casey2009-02-251-1/+1
|
* Mantis#3218. Thank you kindly, TLaukkan (Tommil) for a patch that:Charles Krinke2009-02-221-0/+3
| | | | | | | | | * Added log4net dependency to physxplugin in prebuild.xml. * Added missing m_log fields to classes. * Replaced Console.WriteLine with appropriate m_log.Xxxx * Tested that nant test target runs succesfully. * Tested that local opensim sandbox starts up without errors.
* * optimized usings.lbsa712009-02-121-4/+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!
* * Minor test correction, comment removalSean Dague2008-12-031-2/+1
| | | | | From: Arthur Rodrigo S Valadares <arthursv@linux.vnet.ibm.com>
* Extends Avatar Appearance testsSean Dague2008-12-031-1/+109
| | | | | From: Arthur Rodrigo S Valadares <arthursv@linux.vnet.ibm.com>
* Extended Agent TestsSean Dague2008-11-181-0/+46
| | | | | From: Arthur Rodrigo S Valadares <arthursv@linux.vnet.ibm.com>
* From: arthursv@linux.vnet.ibm.comSean Dague2008-11-061-31/+141
| | | | | | | Add more unit tests for user cases Persist more user fields into mysql that already had columns defined but weren't getting passed to the mysql manager.
* add a test that ensures that databases work if email is null.Sean Dague2008-11-051-0/+4
| | | | | From: Sean Dague <sdague@gmail.com>
* - Added stronger persistence tests for BasicUserTestsSean Dague2008-11-041-11/+101
| | | | | From: Arthur Rodrigo S Valadares <arthursv@linux.vnet.ibm.com>
* implement email field for MySQL and SQLiteSean Dague2008-11-041-1/+5
| | | | | From: Sean Dague <sdague@gmail.com>
* Update svn properties, minor formatting cleanup.Jeff Ames2008-10-171-1/+1
|
* - Removed debug print methodSean Dague2008-10-161-12/+1
|
* more fun with rebasingSean Dague2008-10-161-2/+12
|
* resorting out this merge from arthur, sorry for so many commits here.Sean Dague2008-10-161-8/+0
|
* - Enforced no user or agent with UUID 0 on agent DB insertionSean Dague2008-10-161-0/+5
|
* - New attempt after merging problemSean Dague2008-10-161-5/+0
|
* - Enforced no user or agent with UUID 0 on agent DB insertionSean Dague2008-10-161-0/+3
|
* - Removed a Console.Writeline and added a Test that will be changedSean Dague2008-10-161-2/+7
| | | | | | if the last commit is accepted
* - Removed debug print methodSean Dague2008-10-161-12/+1
|
* - Enforced no user or agent with UUID 0 on agent DB insertionSean Dague2008-10-161-8/+4
|
* clean up a merge conflict and remove a console messageSean Dague2008-10-151-0/+1
|
* - Added User Appearance Set and Get testsSean Dague2008-10-151-0/+10
|
* - Removed a Console.Writeline and added a Test that will be changedSean Dague2008-10-151-2/+20
| | | | | | if the last commit is accepted
* - Makes MySQL reject inserting UUID 0Sean Dague2008-10-151-5/+19
| | | | | | | | | | - Makes SQLite mimick MySQL default behavior on first and last name already on db: it does not insert the new record. - Added tests for UUID 0 and for new UUID with existing first and last name.
* Removed some commentsSean Dague2008-10-151-3/+1
|
* Merge commit 'arthur/master'Sean Dague2008-10-141-13/+244
|
* * minor: remove warningsJustin Clarke Casey2008-09-261-1/+1
|
* 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
|
* move the actual [Test] methods for databases to OpenSim.Data.TestsSean Dague2008-09-121-0/+63
classes. This did mean loosing 1 unit test that was actually testing an sqlite function directly instead of the interface.