diff options
author | Justin Clark-Casey (justincc) | 2011-03-09 23:25:24 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-03-09 23:25:24 +0000 |
commit | 9456bb77fbf794bb6fc2808e6cfd69c9bb1d1326 (patch) | |
tree | 47b00f60f7b287d952be6e33b4c1caee95b41728 /OpenSim/Data/Tests/RegionTests.cs | |
parent | Add log messages on teleport failure to better pin down the cause. (diff) | |
download | opensim-SC_OLD-9456bb77fbf794bb6fc2808e6cfd69c9bb1d1326.zip opensim-SC_OLD-9456bb77fbf794bb6fc2808e6cfd69c9bb1d1326.tar.gz opensim-SC_OLD-9456bb77fbf794bb6fc2808e6cfd69c9bb1d1326.tar.bz2 opensim-SC_OLD-9456bb77fbf794bb6fc2808e6cfd69c9bb1d1326.tar.xz |
Upgrade nunit.framework.dll to version 2.5.9. Fix up tests appropriately.
This version removes the NUnit.Framework.SyntaxHelpers namespace, so any modules with their own tests will need to delete this using statement.
Diffstat (limited to 'OpenSim/Data/Tests/RegionTests.cs')
-rw-r--r-- | OpenSim/Data/Tests/RegionTests.cs | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/OpenSim/Data/Tests/RegionTests.cs b/OpenSim/Data/Tests/RegionTests.cs index 23d498d..9598716 100644 --- a/OpenSim/Data/Tests/RegionTests.cs +++ b/OpenSim/Data/Tests/RegionTests.cs | |||
@@ -31,7 +31,6 @@ using System.Drawing; | |||
31 | using System.Text; | 31 | using System.Text; |
32 | using log4net.Config; | 32 | using log4net.Config; |
33 | using NUnit.Framework; | 33 | using NUnit.Framework; |
34 | using NUnit.Framework.SyntaxHelpers; | ||
35 | using OpenMetaverse; | 34 | using OpenMetaverse; |
36 | using OpenSim.Framework; | 35 | using OpenSim.Framework; |
37 | using OpenSim.Region.Framework.Interfaces; | 36 | using OpenSim.Region.Framework.Interfaces; |
@@ -52,14 +51,6 @@ using OpenSim.Data.SQLite; | |||
52 | 51 | ||
53 | namespace OpenSim.Data.Tests | 52 | namespace OpenSim.Data.Tests |
54 | { | 53 | { |
55 | #if NUNIT25 | ||
56 | |||
57 | [TestFixture(typeof(SqliteConnection), typeof(SQLiteRegionData), Description = "Region store tests (SQLite)")] | ||
58 | [TestFixture(typeof(MySqlConnection), typeof(MySqlRegionData), Description = "Region store tests (MySQL)")] | ||
59 | [TestFixture(typeof(SqlConnection), typeof(MSSQLRegionData), Description = "Region store tests (MS SQL Server)")] | ||
60 | |||
61 | #else | ||
62 | |||
63 | [TestFixture(Description = "Region store tests (SQLite)")] | 54 | [TestFixture(Description = "Region store tests (SQLite)")] |
64 | public class SQLiteRegionTests : RegionTests<SqliteConnection, SQLiteSimulationData> | 55 | public class SQLiteRegionTests : RegionTests<SqliteConnection, SQLiteSimulationData> |
65 | { | 56 | { |
@@ -75,8 +66,6 @@ namespace OpenSim.Data.Tests | |||
75 | { | 66 | { |
76 | } | 67 | } |
77 | 68 | ||
78 | #endif | ||
79 | |||
80 | public class RegionTests<TConn, TRegStore> : BasicDataServiceTest<TConn, TRegStore> | 69 | public class RegionTests<TConn, TRegStore> : BasicDataServiceTest<TConn, TRegStore> |
81 | where TConn : DbConnection, new() | 70 | where TConn : DbConnection, new() |
82 | where TRegStore : class, ISimulationDataStore, new() | 71 | where TRegStore : class, ISimulationDataStore, new() |