01: /*
02: * Copyright 2005-2006 the original author or authors.
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
05: * in compliance with the License. You may obtain a copy of the License at
06: *
07: * http://www.apache.org/licenses/LICENSE-2.0
08: *
09: * Unless required by applicable law or agreed to in writing, software distributed under the License
10: * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
11: * or implied. See the License for the specific language governing permissions and limitations under
12: * the License.
13: */
14:
15: package org.strecks.form.controller;
16:
17: import org.strecks.form.impl.ObjectForm;
18: import org.testng.annotations.BeforeMethod;
19: import org.testng.annotations.Test;
20:
21: /**
22: * @author Phil Zoio
23: */
24: public class TestObjectFormBinding {
25:
26: private ObjectForm form;
27:
28: private DelegatingForm delegator;
29:
30: @BeforeMethod
31: public void testProjectForm() {
32: form = new ObjectForm();
33:
34: delegator = FormTestUtils.getDelegatingForm(form);
35: }
36:
37: @Test
38: public void testBindInwards() {
39: String[] strings = new String[0];
40: form.setObjectField(strings);
41:
42: delegator.bindInwards(null);
43:
44: assert form.getTarget() == strings;
45: }
46:
47: @Test
48: public void testBindOutwards() {
49: String[] strings = new String[0];
50: form.setTarget(strings);
51:
52: delegator.bindOutwards(null);
53:
54: assert form.getObjectField() == strings;
55: }
56:
57: }
|