parent
							
								
									3e94eecc5c
								
							
						
					
					
						commit
						ff28ecee1b
					
				| 
						 | 
				
			
			@ -74,7 +74,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Archiver.Tests
 | 
			
		|||
        /// <summary>
 | 
			
		||||
        /// Test saving a V0.1 OpenSim Inventory Archive (subject to change since there is no fixed format yet).
 | 
			
		||||
        /// </summary>
 | 
			
		||||
        //[Test]
 | 
			
		||||
        [Test]
 | 
			
		||||
        public void TestSaveIarV0_1()
 | 
			
		||||
        {
 | 
			
		||||
            TestHelper.InMethod();
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -45,7 +45,13 @@ namespace OpenSim.Tests.Common.Mock
 | 
			
		|||
        
 | 
			
		||||
        public AssetBase Get(string id)
 | 
			
		||||
        {
 | 
			
		||||
            return Assets[ id ];
 | 
			
		||||
            AssetBase asset;
 | 
			
		||||
            if (Assets.ContainsKey(id))
 | 
			
		||||
                asset = Assets[id];
 | 
			
		||||
            else
 | 
			
		||||
                asset = null;            
 | 
			
		||||
            
 | 
			
		||||
            return asset;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        public AssetMetadata GetMetadata(string id)
 | 
			
		||||
| 
						 | 
				
			
			@ -59,8 +65,10 @@ namespace OpenSim.Tests.Common.Mock
 | 
			
		|||
        }
 | 
			
		||||
 | 
			
		||||
        public bool Get(string id, object sender, AssetRetrieved handler)
 | 
			
		||||
        {
 | 
			
		||||
            throw new NotImplementedException();
 | 
			
		||||
        {            
 | 
			
		||||
            handler(id, sender, Get(id));
 | 
			
		||||
            
 | 
			
		||||
            return true;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        public string Store(AssetBase asset)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue