Add Newtonsoft.Json to the references of TestSiteBrail
[castle.git] / Components / Binder / Castle.Components.Binder.Tests / TreeBuilderDataBinderIntegrationTestCase.cs
blob7129dcce9dc37edaef526bbdac83c867ff496855
1 // Copyright 2004-2008 Castle Project - http://www.castleproject.org/
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
15 namespace Castle.Components.Binder.Tests
17 using System;
18 using System.Collections.Specialized;
19 using NUnit.Framework;
21 [TestFixture]
22 public class TreeBuilderDataBinderIntegrationTestCase
24 private DataBinder binder;
25 private TreeBuilder builder;
27 [SetUp]
28 public void Init()
30 builder = new TreeBuilder();
31 binder = new DataBinder();
34 [Test]
35 public void SimpleEntries()
37 NameValueCollection nameValueColl = new NameValueCollection();
39 nameValueColl.Add("name", "hammett");
40 nameValueColl.Add("age", "27");
41 nameValueColl.Add("age", "28");
43 CompositeNode root = builder.BuildSourceNode(nameValueColl);
45 Assert.AreEqual("hammett", binder.BindParameter(typeof(String), "name", root));
46 Assert.AreEqual(new int[] { 27, 28 }, binder.BindParameter(typeof(int[]), "age", root));