aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/Tests/TaskInventoryTests.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Dump OpenSim 0.9.0.1 into it's own branch.onefang2019-05-191-11/+11
|
* Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel2016-11-031-9/+9
|
* Consistenly make NUnit test cases inherit from OpenSimTestCase which ↵Justin Clark-Casey (justincc)2012-11-241-1/+1
| | | | automatically turns off any logging enabled between tests
* Add OSSL function osForceAttachToAvatarFromInventory()Justin Clark-Casey (justincc)2012-07-051-2/+7
| | | | | | | This works like osForceAttachToAvatar() but allows an object to be directly specified from the script object's inventory rather than forcing it to be rezzed in the scene first. Still only attaches objects to the owner of the script. This allows one to bypass the complicated co-ordination of first rezzing objects in the scene before attaching them. Threat level high.
* Add regression test for teleporting an agent between separated regions on ↵Justin Clark-Casey (justincc)2012-04-271-4/+4
| | | | | | | | the same simulator. This involves a large amount of change in test scene setup code to allow test scenes to share shared modules SetupScene is now an instance method that requires an instantiation of SceneHelpers, though other SceneHelpers methods are still static May split these out into separate classes in the future.
* Add llGiveInventory() test from object to object where both objects are ↵Justin Clark-Casey (justincc)2012-03-221-2/+4
| | | | owned by the same user.
* minor: remove mono compiler warningJustin Clark-Casey (justincc)2012-03-021-2/+1
|
* Add TestAddTaskInventoryItem()Justin Clark-Casey (justincc)2012-02-071-1/+25
|
* rename TestHelper => TestHelpers for consistencyJustin Clark-Casey (justincc)2011-08-061-3/+3
|
* rename test SceneSetupHelpers -> SceneHelpers for consistencyJustin Clark-Casey (justincc)2011-08-061-6/+6
|
* Get rid of OpenSim.Tests.Common.Setup subpackage in favour of just ↵Justin Clark-Casey (justincc)2011-05-211-1/+0
| | | | OpenSim.Tests.Common instead
* refactor: rename AddSceneObjectItem to AddSceneObjectJustin Clark-Casey (justincc)2011-05-211-1/+1
|
* refactor: move scene object item creation code into TaskInventoryHelpersJustin Clark-Casey (justincc)2011-05-211-8/+2
|
* move test task inventory notecard item creation into a new ↵Justin Clark-Casey (justincc)2011-05-211-21/+2
| | | | TastInventoryHelpers class
* refactor: use SceneSetupHelpers.CreateSceneObject()Justin Clark-Casey (justincc)2011-05-211-13/+3
|
* rename UserProfileTestUtils to UserAccountHelpers to be consistent with ↵Justin Clark-Casey (justincc)2011-05-211-3/+3
| | | | other test helper names
* refactor: in TaskInventoryTests, use ↵Justin Clark-Casey (justincc)2011-05-211-12/+3
| | | | UserProfileTestUtils.CreateUserWithInvetory()
* refactor Scene.RezObject() to use AddNewSceneObject() rather than ↵Justin Clark-Casey (justincc)2011-05-211-1/+4
| | | | copy/pasting code with small differences
* refactor TestRezObjectFromInventoryItem()Justin Clark-Casey (justincc)2011-05-201-6/+6
|
* add test for rezzing an object from a prim itemJustin Clark-Casey (justincc)2011-05-201-1/+44
|
* get rid of all traces of the now used mock service infrastructureJustin Clark-Casey (justincc)2011-04-151-2/+2
|
* Upgrade nunit.framework.dll to version 2.5.9. Fix up tests appropriately.Justin Clark-Casey (justincc)2011-03-091-1/+0
| | | | This version removes the NUnit.Framework.SyntaxHelpers namespace, so any modules with their own tests will need to delete this using statement.
* Formatting cleanup.Jeff Ames2010-09-121-7/+7
|
* * Cache null account responses in the SimianUserAccountServiceConnector to ↵John Hurliman2010-09-071-1/+3
| | | | | | avoid repeated requests for missing avatar IDs * Updated to OpenMetaverse r3442 to fix a timezone issue with ExpiringCache
* add test to check move of task item to user inventory when a target folder ↵Justin Clark-Casey (justincc)2010-08-241-0/+26
| | | | is explicitly given
* refactor TestMoveTaskInventoryItemNoParent()Justin Clark-Casey (justincc)2010-08-241-24/+37
|
* Add automated test at the opensim 'api' level to check that a given item ↵Justin Clark-Casey (justincc)2010-08-241-0/+104
goes to the correct directory Also removes some mono compiler warnings