/V1/trunk/Source/QuickStarts/UIComposition/UIComposition.Modules.Employee.Tests/Services/EmployeeServiceFixture.cs
# · C# · 40 lines · 20 code · 4 blank · 16 comment · 0 complexity · 2576bb0f47d33fed1f28499fa0e77618 MD5 · raw file
- //===============================================================================
- // Microsoft patterns & practices
- // Composite Application Guidance for Windows Presentation Foundation
- //===============================================================================
- // Copyright (c) Microsoft Corporation. All rights reserved.
- // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY
- // OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT
- // LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
- // FITNESS FOR A PARTICULAR PURPOSE.
- //===============================================================================
- // The example companies, organizations, products, domain names,
- // e-mail addresses, logos, people, places, and events depicted
- // herein are fictitious. No association with any real company,
- // organization, product, domain name, email address, logo, person,
- // places, or events is intended or should be inferred.
- //===============================================================================
-
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using Microsoft.VisualStudio.TestTools.UnitTesting;
- using UIComposition.Modules.Employee.Services;
-
- namespace UIComposition.Modules.Employee.Tests.Services
- {
- [TestClass]
- public class EmployeeServiceFixture
- {
- [TestMethod]
- public void ShouldReturnDefaultData()
- {
- IEmployeeService service = new EmployeeService();
-
- int count = service.RetrieveEmployees().Count;
-
- Assert.IsTrue(count > 0);
- }
- }
- }