diff options
author | Justin Clarke Casey | 2008-12-11 16:40:22 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-12-11 16:40:22 +0000 |
commit | e02aaaf9db6750867fa74f96861a3d3f8d03693f (patch) | |
tree | 672f53945d42ac374965bb238b6be14a70f9282e /OpenSim/Tests | |
parent | Reimplemented running of ShutdownCommandFile. Mantis #2800 (diff) | |
download | opensim-SC_OLD-e02aaaf9db6750867fa74f96861a3d3f8d03693f.zip opensim-SC_OLD-e02aaaf9db6750867fa74f96861a3d3f8d03693f.tar.gz opensim-SC_OLD-e02aaaf9db6750867fa74f96861a3d3f8d03693f.tar.bz2 opensim-SC_OLD-e02aaaf9db6750867fa74f96861a3d3f8d03693f.tar.xz |
* minor: Move mock test classes into mock namespace
Diffstat (limited to 'OpenSim/Tests')
-rw-r--r-- | OpenSim/Tests/Infra/Mock/TestAssetDataPlugin.cs (renamed from OpenSim/Tests/Infra/TestAssetDataPlugin.cs) | 2 | ||||
-rw-r--r-- | OpenSim/Tests/Infra/Mock/TestClient.cs (renamed from OpenSim/Tests/Infra/TestClient.cs) | 2 | ||||
-rw-r--r-- | OpenSim/Tests/Infra/Mock/TestCommunicationsManager.cs (renamed from OpenSim/Tests/Infra/TestCommunicationsManager.cs) | 2 | ||||
-rw-r--r-- | OpenSim/Tests/Infra/Mock/TestInventoryDataPlugin.cs (renamed from OpenSim/Tests/Infra/TestInventoryDataPlugin.cs) | 2 | ||||
-rw-r--r-- | OpenSim/Tests/Infra/Mock/TestLandChannel.cs (renamed from OpenSim/Tests/Infra/TestLandChannel.cs) | 2 | ||||
-rw-r--r-- | OpenSim/Tests/Infra/Mock/TestScene.cs (renamed from OpenSim/Tests/Infra/TestScene.cs) | 2 | ||||
-rw-r--r-- | OpenSim/Tests/Infra/Mock/TestUserDataPlugin.cs (renamed from OpenSim/Tests/Infra/TestUserDataPlugin.cs) | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/OpenSim/Tests/Infra/TestAssetDataPlugin.cs b/OpenSim/Tests/Infra/Mock/TestAssetDataPlugin.cs index 44276dc..6a5c31e 100644 --- a/OpenSim/Tests/Infra/TestAssetDataPlugin.cs +++ b/OpenSim/Tests/Infra/Mock/TestAssetDataPlugin.cs | |||
@@ -29,7 +29,7 @@ using OpenMetaverse; | |||
29 | using OpenSim.Framework; | 29 | using OpenSim.Framework; |
30 | using OpenSim.Framework.Communications; | 30 | using OpenSim.Framework.Communications; |
31 | 31 | ||
32 | namespace OpenSim.Tests.Infra | 32 | namespace OpenSim.Tests.Infra.Mock |
33 | { | 33 | { |
34 | /// <summary> | 34 | /// <summary> |
35 | /// In memory asset data plugin for test purposes. Could be another dll when properly filled out and when the | 35 | /// In memory asset data plugin for test purposes. Could be another dll when properly filled out and when the |
diff --git a/OpenSim/Tests/Infra/TestClient.cs b/OpenSim/Tests/Infra/Mock/TestClient.cs index bc064ad..ba64393 100644 --- a/OpenSim/Tests/Infra/TestClient.cs +++ b/OpenSim/Tests/Infra/Mock/TestClient.cs | |||
@@ -33,7 +33,7 @@ using OpenMetaverse.Packets; | |||
33 | using OpenSim.Framework; | 33 | using OpenSim.Framework; |
34 | using OpenSim.Region.Environment.Scenes; | 34 | using OpenSim.Region.Environment.Scenes; |
35 | 35 | ||
36 | namespace OpenSim.Tests.Infra | 36 | namespace OpenSim.Tests.Infra.Mock |
37 | { | 37 | { |
38 | public class TestClient : IClientAPI | 38 | public class TestClient : IClientAPI |
39 | { | 39 | { |
diff --git a/OpenSim/Tests/Infra/TestCommunicationsManager.cs b/OpenSim/Tests/Infra/Mock/TestCommunicationsManager.cs index 0018427..38c1404 100644 --- a/OpenSim/Tests/Infra/TestCommunicationsManager.cs +++ b/OpenSim/Tests/Infra/Mock/TestCommunicationsManager.cs | |||
@@ -31,7 +31,7 @@ using OpenSim.Framework.Communications.Cache; | |||
31 | using OpenSim.Framework.Servers; | 31 | using OpenSim.Framework.Servers; |
32 | using OpenSim.Region.Communications.Local; | 32 | using OpenSim.Region.Communications.Local; |
33 | 33 | ||
34 | namespace OpenSim.Tests.Infra | 34 | namespace OpenSim.Tests.Infra.Mock |
35 | { | 35 | { |
36 | public class TestCommunicationsManager : CommunicationsManager | 36 | public class TestCommunicationsManager : CommunicationsManager |
37 | { | 37 | { |
diff --git a/OpenSim/Tests/Infra/TestInventoryDataPlugin.cs b/OpenSim/Tests/Infra/Mock/TestInventoryDataPlugin.cs index d59c1de..826ce1b 100644 --- a/OpenSim/Tests/Infra/TestInventoryDataPlugin.cs +++ b/OpenSim/Tests/Infra/Mock/TestInventoryDataPlugin.cs | |||
@@ -30,7 +30,7 @@ using System.Collections.Generic; | |||
30 | using OpenMetaverse; | 30 | using OpenMetaverse; |
31 | using OpenSim.Framework; | 31 | using OpenSim.Framework; |
32 | 32 | ||
33 | namespace OpenSim.Tests.Infra | 33 | namespace OpenSim.Tests.Infra.Mock |
34 | { | 34 | { |
35 | /// <summary> | 35 | /// <summary> |
36 | /// In memory inventory data plugin for test purposes. Could be another dll when properly filled out and when the | 36 | /// In memory inventory data plugin for test purposes. Could be another dll when properly filled out and when the |
diff --git a/OpenSim/Tests/Infra/TestLandChannel.cs b/OpenSim/Tests/Infra/Mock/TestLandChannel.cs index 93ab674..21a6493 100644 --- a/OpenSim/Tests/Infra/TestLandChannel.cs +++ b/OpenSim/Tests/Infra/Mock/TestLandChannel.cs | |||
@@ -30,7 +30,7 @@ using OpenMetaverse; | |||
30 | using OpenSim.Framework; | 30 | using OpenSim.Framework; |
31 | using OpenSim.Region.Environment.Interfaces; | 31 | using OpenSim.Region.Environment.Interfaces; |
32 | 32 | ||
33 | namespace OpenSim.Tests.Infra | 33 | namespace OpenSim.Tests.Infra.Mock |
34 | { | 34 | { |
35 | /// <summary> | 35 | /// <summary> |
36 | /// Land channel for test purposes | 36 | /// Land channel for test purposes |
diff --git a/OpenSim/Tests/Infra/TestScene.cs b/OpenSim/Tests/Infra/Mock/TestScene.cs index 0d74c52..ca66014 100644 --- a/OpenSim/Tests/Infra/TestScene.cs +++ b/OpenSim/Tests/Infra/Mock/TestScene.cs | |||
@@ -33,7 +33,7 @@ using OpenSim.Framework.Servers; | |||
33 | using OpenSim.Region.Environment; | 33 | using OpenSim.Region.Environment; |
34 | using OpenSim.Region.Environment.Scenes; | 34 | using OpenSim.Region.Environment.Scenes; |
35 | 35 | ||
36 | namespace OpenSim.Tests.Infra | 36 | namespace OpenSim.Tests.Infra.Mock |
37 | { | 37 | { |
38 | public class TestScene : Scene | 38 | public class TestScene : Scene |
39 | { | 39 | { |
diff --git a/OpenSim/Tests/Infra/TestUserDataPlugin.cs b/OpenSim/Tests/Infra/Mock/TestUserDataPlugin.cs index 23cb89d..c08fc90 100644 --- a/OpenSim/Tests/Infra/TestUserDataPlugin.cs +++ b/OpenSim/Tests/Infra/Mock/TestUserDataPlugin.cs | |||
@@ -30,7 +30,7 @@ using System.Collections.Generic; | |||
30 | using OpenMetaverse; | 30 | using OpenMetaverse; |
31 | using OpenSim.Framework; | 31 | using OpenSim.Framework; |
32 | 32 | ||
33 | namespace OpenSim.Tests.Infra | 33 | namespace OpenSim.Tests.Infra.Mock |
34 | { | 34 | { |
35 | /// <summary> | 35 | /// <summary> |
36 | /// In memory user data provider. Might be quite useful as a proper user data plugin, though getting mono addins | 36 | /// In memory user data provider. Might be quite useful as a proper user data plugin, though getting mono addins |