|
| UUID | uuid1 = UUID.Random() |
| |
| UUID | uuid2 = UUID.Random() |
| |
| UUID | uuid3 = UUID.Random() |
| |
| string | critter1 = UUID.Random().ToString() |
| |
| string | critter2 = UUID.Random().ToString() |
| |
| string | critter3 = UUID.Random().ToString() |
| |
| byte[] | data1 = new byte[100] |
| |
|
| override void | InitService (object service) |
| | To be overridden in derived classes. Do whatever init with the m_service, like setting the conn string to it. You'd probably want to to cast the 'service' to a more specific type and store it in a member var. This framework takes care of disposing it, if it's disposable. More...
|
| |
| virtual DbConnection | Connect () |
| |
| virtual void | ExecuteSql (string sql) |
| |
| delegate bool | ProcessRow (IDataReader reader) |
| |
| virtual int | ExecQuery (string sql, bool bSingleRow, ProcessRow action) |
| |
| virtual void | DropTables (params string[] tables) |
| | Drop tables (listed as parameters). There is no "DROP IF EXISTS" syntax common for all databases, so we just DROP and ignore an exception. More...
|
| |
| virtual void | ResetMigrations (params string[] stores) |
| | Clear tables listed as parameters (without dropping them). More...
|
| |
| virtual void | ClearTables (params string[] tables) |
| | Clear tables listed as parameters (without dropping them). More...
|
| |
- Type Constraints
-
| TConn | : | DbConnection | |
| TConn | : | new() | |
| TAssetData | : | AssetDataBase | |
| TAssetData | : | new() | |
Definition at line 58 of file AssetTests.cs.
| override void OpenSim.Data.Tests.AssetTests< TConn, TAssetData >.InitService |
( |
object |
service | ) |
|
|
inlineprotectedvirtual |
To be overridden in derived classes. Do whatever init with the m_service, like setting the conn string to it. You'd probably want to to cast the 'service' to a more specific type and store it in a member var. This framework takes care of disposing it, if it's disposable.
- Parameters
-
| service | The service being tested |
Reimplemented from OpenSim.Data.Tests.BasicDataServiceTest< TConn, TService >.
Definition at line 84 of file AssetTests.cs.
| void OpenSim.Data.Tests.AssetTests< TConn, TAssetData >.T001_LoadEmpty |
( |
| ) |
|
|
inline |
| void OpenSim.Data.Tests.AssetTests< TConn, TAssetData >.T010_StoreReadVerifyAssets |
( |
| ) |
|
|
inline |
| void OpenSim.Data.Tests.AssetTests< TConn, TAssetData >.T020_CheckForWeirdCreatorID |
( |
| ) |
|
|
inline |
| string OpenSim.Data.Tests.AssetTests< TConn, TAssetData >.critter1 = UUID.Random().ToString() |
| string OpenSim.Data.Tests.AssetTests< TConn, TAssetData >.critter2 = UUID.Random().ToString() |
| string OpenSim.Data.Tests.AssetTests< TConn, TAssetData >.critter3 = UUID.Random().ToString() |
| byte [] OpenSim.Data.Tests.AssetTests< TConn, TAssetData >.data1 = new byte[100] |
| UUID OpenSim.Data.Tests.AssetTests< TConn, TAssetData >.uuid1 = UUID.Random() |
| UUID OpenSim.Data.Tests.AssetTests< TConn, TAssetData >.uuid2 = UUID.Random() |
| UUID OpenSim.Data.Tests.AssetTests< TConn, TAssetData >.uuid3 = UUID.Random() |
The documentation for this class was generated from the following file: