~ubuntu-branches/debian/squeeze/gnome-do-plugins/squeeze

« back to all changes in this revision

Viewing changes to BundledLibraries/libgoogle-data-mono-1.4.0.2/src/unittests/core/NotVerifiedExceptionTest.cs

  • Committer: Bazaar Package Importer
  • Author(s): Christopher James Halse Rogers
  • Date: 2009-06-27 16:11:49 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090627161149-b74nc297di2842u1
* New upstream release
  + Pidgin plugin now supports initial text for messages (LP: #338608)
  + Pidgin plugin opens conversations on the correct IM network (LP: #370965)
* debian/rules:
  + Update get-orig-source target.  Upstream no longer ships gdata* binaries,
    so we no longer need to strip them
* debian/patches/00_use_system_gdata
  + Drop.  Upstream now builds against system libgdata.
* debian/patches/04_fix_pidgin_dbus_ints
* debian/patches/10_fix_rhythmbox_file
* debian/patches/15_twitter_api
* debian/patches/20_twitter_overflow:
  + Drop.  Included upstream.
* debian/patches/01_firefox_iceweasel_rename:
  + Refresh for new version
* debian/patches/02_fix_banshee_plugin:
  + Drop refernce to /usr/lib/banshee-1/Banshee.CollectionIndexer.dll.
    This is unnecessary, and causes errors when Banshee isn't installed.
* debian/patches/00_debian_default_plugins:
  + Enable a bunch of useful plugins that do not require configuration from 
    the "Official" plugin set by default.  Makes Do more useful out of the 
    box.
* debian/control:
  + Bump versioned build-dep on gnome-do to 0.8.2
  + Split out gnome-do-plugin-evolution package, now that this is possible.
    libevolution5.0-cil has an annoyingly large dependency stack.
    (LP: #351535) (Closes: #524993).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
using Google.GData.Client;
2
 
using NUnit.Framework;
3
 
using Google.GData.Client.UnitTests;
4
 
 
5
 
    
6
 
    
7
 
 
8
 
namespace Google.GData.Client.UnitTests.Core
9
 
{
10
 
    
11
 
    
12
 
    /// <summary>
13
 
    ///This is a test class for NotVerifiedExceptionTest and is intended
14
 
    ///to contain all NotVerifiedExceptionTest Unit Tests
15
 
    ///</summary>
16
 
    [TestFixture][Category("CoreClient")]
17
 
    public class NotVerifiedExceptionTest
18
 
    {
19
 
 
20
 
 
21
 
        private TestContext testContextInstance;
22
 
 
23
 
        /// <summary>
24
 
        ///Gets or sets the test context which provides
25
 
        ///information about and functionality for the current test run.
26
 
        ///</summary>
27
 
        public TestContext TestContext
28
 
        {
29
 
            get
30
 
            {
31
 
                return testContextInstance;
32
 
            }
33
 
            set
34
 
            {
35
 
                testContextInstance = value;
36
 
            }
37
 
        }
38
 
 
39
 
        #region Additional test attributes
40
 
        // 
41
 
        //You can use the following additional attributes as you write your tests:
42
 
        //
43
 
        //Use ClassInitialize to run code before running the first test in the class
44
 
        //[ClassInitialize()]
45
 
        //public static void MyClassInitialize(TestContext testContext)
46
 
        //{
47
 
        //}
48
 
        //
49
 
        //Use ClassCleanup to run code after all tests in a class have run
50
 
        //[ClassCleanup()]
51
 
        //public static void MyClassCleanup()
52
 
        //{
53
 
        //}
54
 
        //
55
 
        //Use TestInitialize to run code before running each test
56
 
        //[TestInitialize()]
57
 
        //public void MyTestInitialize()
58
 
        //{
59
 
        //}
60
 
        //
61
 
        //Use TestCleanup to run code after each test has run
62
 
        //[TestCleanup()]
63
 
        //public void MyTestCleanup()
64
 
        //{
65
 
        //}
66
 
        //
67
 
        #endregion
68
 
 
69
 
 
70
 
        /// <summary>
71
 
        ///A test for NotVerifiedException Constructor
72
 
        ///</summary>
73
 
        [Test]
74
 
        public void NotVerifiedExceptionConstructorTest1()
75
 
        {
76
 
            NotVerifiedException target = new NotVerifiedException();
77
 
            Assert.IsNotNull(target);
78
 
        }
79
 
 
80
 
        /// <summary>
81
 
        ///A test for NotVerifiedException Constructor
82
 
        ///</summary>
83
 
        [Test]
84
 
        public void NotVerifiedExceptionConstructorTest()
85
 
        {
86
 
            string msg = "TestValue"; // TODO: Initialize to an appropriate value
87
 
            NotVerifiedException target = new NotVerifiedException(msg);
88
 
            Assert.AreEqual(target.Message, msg);
89
 
        }
90
 
    }
91
 
}