/clients/cs/src/unittests/youtube/QueryStringTest.cs
http://google-gdata.googlecode.com/ · C# · 90 lines · 38 code · 11 blank · 41 comment · 0 complexity · d6cdeff834208413fbe12a9776affe91 MD5 · raw file
- using NUnit.Framework;
- using Google.GData.Client.UnitTests;
- using Google.GData.YouTube;
-
- namespace Google.GData.Client.UnitTests.YouTube
- {
-
-
- /// <summary>
- ///This is a test class for QueryStringTest and is intended
- ///to contain all QueryStringTest Unit Tests
- ///</summary>
- [TestFixture]
- [Category("YouTube")]
-
- public class QueryStringTest
- {
-
-
- private TestContext testContextInstance;
-
- /// <summary>
- ///Gets or sets the test context which provides
- ///information about and functionality for the current test run.
- ///</summary>
- public TestContext TestContext
- {
- get
- {
- return testContextInstance;
- }
- set
- {
- testContextInstance = value;
- }
- }
-
- #region Additional test attributes
- //
- //You can use the following additional attributes as you write your tests:
- //
- //Use ClassInitialize to run code before running the first test in the class
- //[ClassInitialize()]
- //public static void MyClassInitialize(TestContext testContext)
- //{
- //}
- //
- //Use ClassCleanup to run code after all tests in a class have run
- //[ClassCleanup()]
- //public static void MyClassCleanup()
- //{
- //}
- //
- //Use TestInitialize to run code before running each test
- //[TestInitialize()]
- //public void MyTestInitialize()
- //{
- //}
- //
- //Use TestCleanup to run code after each test has run
- //[TestCleanup()]
- //public void MyTestCleanup()
- //{
- //}
- //
- #endregion
-
-
- /// <summary>
- ///A test for QueryString Constructor
- ///</summary>
- [Test]
- public void QueryStringConstructorTest1()
- {
- QueryString target = new QueryString();
- Assert.IsNull(target.Value, "Object value should be null after construction");
- }
-
- /// <summary>
- ///A test for QueryString Constructor
- ///</summary>
- [Test]
- public void QueryStringConstructorTest()
- {
- string initValue = "secret test string";
- QueryString target = new QueryString(initValue);
- Assert.AreEqual(target.Value, initValue, "Object value should be identical after construction");
- }
- }
- }