CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
NameValueListTests.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="NameValueListTests.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>no summary</summary>
7//-----------------------------------------------------------------------
8using Csla;
11using System;
12using UnitDriven;
13
14#if NUNIT
15using NUnit.Framework;
16using TestClass = NUnit.Framework.TestFixtureAttribute;
17using TestInitialize = NUnit.Framework.SetUpAttribute;
18using TestCleanup = NUnit.Framework.TearDownAttribute;
19using TestMethod = NUnit.Framework.TestAttribute;
20using TestSetup = NUnit.Framework.SetUpAttribute;
21#elif MSTEST
22using Microsoft.VisualStudio.TestTools.UnitTesting;
23#endif
24
26{
27 [TestClass]
29 {
30 [TestMethod]
31 public void TestNameValueList()
32 {
34 Assert.AreEqual(10, list.Count, "Items are not caught via fetch");
35 Assert.AreEqual("element_2", list.GetItemByKey(2).Value, "NameValue collection fetch failed.");
36 }
37 }
38}
NameValuePair GetItemByKey(K key)
Get the item for the first matching key in the collection.