1 // Copyright 2004-2008 Castle Project - http://www.castleproject.org/
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
7 // http://www.apache.org/licenses/LICENSE-2.0
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
18 using System
.Collections
.Specialized
;
19 using NUnit
.Framework
;
22 public class TreeBuilderDataBinderIntegrationTestCase
24 private DataBinder binder
;
25 private TreeBuilder builder
;
30 builder
= new TreeBuilder();
31 binder
= new DataBinder();
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
));