Click here to Skip to main content
15,879,326 members
Articles / Web Development / ASP.NET

Genesis Smart Client v2.0 - Ruby - User Experience Platform

Rate me:
Please Sign up or sign in to vote.
4.50/5 (6 votes)
7 Jun 2010Ms-PL12 min read 25.2K   353   12  
This article introduces The Genesis Smart Client Framework v2.0 (Project Ruby). It focusses on the user interface component, dubbed the User Experience Platform (UXP), developed using PRISM for WPF and Silverlight.
using BlueMarble.Genesis.Shell;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using Microsoft.Practices.Composite.Logging;

namespace BlueMarble.Genesis.Shell.Test
{
    
    
    /// <summary>
    ///This is a test class for EnterpriseLibraryLoggerAdapterTest and is intended
    ///to contain all EnterpriseLibraryLoggerAdapterTest Unit Tests
    ///</summary>
    [TestClass()]
    public class EnterpriseLibraryLoggerAdapterTest
    {


        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 EnterpriseLibraryLoggerAdapter Constructor
        ///</summary>
        [TestMethod()]
        public void EnterpriseLibraryLoggerAdapterConstructorTest()
        {
            EnterpriseLibraryLoggerAdapter target = new EnterpriseLibraryLoggerAdapter();
            Assert.Inconclusive("TODO: Implement code to verify target");
        }

        /// <summary>
        ///A test for Log
        ///</summary>
        [TestMethod()]
        public void LogTest()
        {
            EnterpriseLibraryLoggerAdapter target = new EnterpriseLibraryLoggerAdapter(); // TODO: Initialize to an appropriate value
            string message = string.Empty; // TODO: Initialize to an appropriate value
            Category category = new Category(); // TODO: Initialize to an appropriate value
            Priority priority = new Priority(); // TODO: Initialize to an appropriate value
            target.Log(message, category, priority);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)


Written By
We Fix Code
South Africa South Africa
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions