* Added custom DatabaseTestAttribute to help separating unit tests from component tests.

This commit is contained in:
lbsa71
2009-04-09 06:42:15 +00:00
parent 65dcfdf031
commit a707fa7bea
31 changed files with 47 additions and 30 deletions

View File

@@ -31,7 +31,7 @@ using OpenSim.Data.Tests;
namespace OpenSim.Data.SQLite.Tests
{
[TestFixture]
[TestFixture, DatabaseTest]
public class SQLiteAssetTest : BasicAssetTest
{
public string file;

View File

@@ -31,7 +31,7 @@ using OpenSim.Data.Tests;
namespace OpenSim.Data.SQLite.Tests
{
[TestFixture]
[TestFixture, DatabaseTest]
public class SQLiteEstateTest : BasicEstateTest
{
public string file = "regiontest.db";

View File

@@ -31,7 +31,7 @@ using OpenSim.Data.Tests;
namespace OpenSim.Data.SQLite.Tests
{
[TestFixture]
[TestFixture, DatabaseTest]
public class SQLiteInventoryTest : BasicInventoryTest
{
public string file;

View File

@@ -31,7 +31,7 @@ using OpenSim.Data.Tests;
namespace OpenSim.Data.SQLite.Tests
{
[TestFixture]
[TestFixture, DatabaseTest]
public class SQLiteRegionTest : BasicRegionTest
{
public string file = "regiontest.db";

View File

@@ -31,7 +31,7 @@ using OpenSim.Data.Tests;
namespace OpenSim.Data.SQLite.Tests
{
[TestFixture]
[TestFixture, DatabaseTest]
public class SQLiteUserTest : BasicUserTest
{
public string file;