~ubuntu-branches/ubuntu/precise/gnome-do/precise-proposed

« back to all changes in this revision

Viewing changes to Do/src/Do.Core/Tests/UniverseRemoveItem.cs

  • Committer: Bazaar Package Importer
  • Author(s): Christopher James Halse Rogers
  • Date: 2008-09-14 10:09:40 UTC
  • mto: (0.1.8 sid)
  • mto: This revision was merged to the branch mainline in revision 7.
  • Revision ID: james.westby@ubuntu.com-20080914100940-kyghudg7py14bu2z
Tags: upstream-0.6.0.0
ImportĀ upstreamĀ versionĀ 0.6.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// UniverseRemoveItem.cs
 
2
// 
 
3
// Copyright (C) 2008 GNOME-Do
 
4
//
 
5
// This program is free software: you can redistribute it and/or modify
 
6
// it under the terms of the GNU General Public License as published by
 
7
// the Free Software Foundation, either version 3 of the License, or
 
8
// (at your option) any later version.
 
9
//
 
10
// This program is distributed in the hope that it will be useful,
 
11
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
// GNU General Public License for more details.
 
14
//
 
15
// You should have received a copy of the GNU General Public License
 
16
// along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
17
//
 
18
 
 
19
using System;
 
20
using NUnit.Framework;
 
21
 
 
22
using Do.Core;
 
23
using Do.Addins;
 
24
using Do.Universe;
 
25
 
 
26
namespace Do
 
27
{
 
28
        
 
29
        
 
30
        [TestFixture()]
 
31
        public class UniverseRemoveItem
 
32
        {
 
33
                
 
34
                [Test()]
 
35
                public void TestCase()
 
36
                {
 
37
                        IUniverseManager universe = new SimpleUniverseManager ();
 
38
                        IItem[] items = new IItem[1];
 
39
                        items[0] = new FileItem ("/etc");
 
40
                        
 
41
                        universe.AddItems (items);
 
42
                        universe.DeleteItems (items);
 
43
                        
 
44
                        IObject outItem;
 
45
                        universe.TryGetObjectForUID (new DoItem(items[0]).UID, out outItem);
 
46
                        Assert.IsNull (outItem, "Failed to retrieve item by UID");
 
47
                }
 
48
        }
 
49
}