diff options
author | Justin Clarke Casey | 2009-01-23 17:07:37 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2009-01-23 17:07:37 +0000 |
commit | ddff7ab20e32664e09f06668f6e6250ea3b3abf7 (patch) | |
tree | 6dd80617df340bb3a9cff3d922c8809d7c4413ba /OpenSim/Region/Environment/Modules/World/Archiver/Tests/ArchiverTests.cs | |
parent | * Adds a synchronous jpeg decode for pre-caching purposes (diff) | |
download | opensim-SC-ddff7ab20e32664e09f06668f6e6250ea3b3abf7.zip opensim-SC-ddff7ab20e32664e09f06668f6e6250ea3b3abf7.tar.gz opensim-SC-ddff7ab20e32664e09f06668f6e6250ea3b3abf7.tar.bz2 opensim-SC-ddff7ab20e32664e09f06668f6e6250ea3b3abf7.tar.xz |
* Add direct stream loading and saving methods to the archive module.
* The async stream method does not yet signal completion to interested calling code
Diffstat (limited to 'OpenSim/Region/Environment/Modules/World/Archiver/Tests/ArchiverTests.cs')
-rw-r--r-- | OpenSim/Region/Environment/Modules/World/Archiver/Tests/ArchiverTests.cs | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/OpenSim/Region/Environment/Modules/World/Archiver/Tests/ArchiverTests.cs b/OpenSim/Region/Environment/Modules/World/Archiver/Tests/ArchiverTests.cs index c2f0d63..149293d 100644 --- a/OpenSim/Region/Environment/Modules/World/Archiver/Tests/ArchiverTests.cs +++ b/OpenSim/Region/Environment/Modules/World/Archiver/Tests/ArchiverTests.cs | |||
@@ -26,18 +26,22 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using NUnit.Framework; | 28 | using NUnit.Framework; |
29 | using OpenSim.Region.Environment.Modules.World.Archiver; | ||
29 | 30 | ||
30 | namespace OpenSim.Region.Environment.Modules.World.Archiver | 31 | namespace OpenSim.Region.Environment.Modules.World.Archiver.Tests |
31 | { | 32 | { |
32 | [TestFixture] | 33 | [TestFixture] |
33 | public class ArchiverTests | 34 | public class ArchiverTests |
34 | { | 35 | { |
35 | /// <summary> | 36 | /// <summary> |
36 | /// Test loading a V0.2 OpenSim Region Archive. Does not yet do what it says on the tin | 37 | /// Test saving a V0.2 OpenSim Region Archive. Does not yet do what it says on the tin |
37 | /// </summary> | 38 | /// </summary> |
38 | [Test] | 39 | [Test] |
39 | public void TestLoadOarV0p2() | 40 | public void TestSaveOarV0p2() |
40 | { | 41 | { |
42 | // Create an archive containing only a terrain | ||
43 | //TarArchiveWriter taw = new TarArchiveWriter(); | ||
44 | |||
41 | //System.Console.WriteLine("wibble"); | 45 | //System.Console.WriteLine("wibble"); |
42 | } | 46 | } |
43 | } | 47 | } |