diff options
author | Artur Signell <artur@vaadin.com> | 2012-08-30 17:02:08 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-08-30 17:02:08 +0300 |
commit | 8941056349e302e687e40e94c13709e75f256d73 (patch) | |
tree | 34e0d95656ddb607792c849a203c4da6ead06421 /server/tests/src/com | |
parent | c6112a24777ce7f6b708039e16909ed939014ca4 (diff) | |
download | vaadin-framework-8941056349e302e687e40e94c13709e75f256d73.tar.gz vaadin-framework-8941056349e302e687e40e94c13709e75f256d73.zip |
Reformatted project
Diffstat (limited to 'server/tests/src/com')
-rw-r--r-- | server/tests/src/com/vaadin/data/util/sqlcontainer/ColumnPropertyTest.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/server/tests/src/com/vaadin/data/util/sqlcontainer/ColumnPropertyTest.java b/server/tests/src/com/vaadin/data/util/sqlcontainer/ColumnPropertyTest.java index 09f620cc2a..7cad310d37 100644 --- a/server/tests/src/com/vaadin/data/util/sqlcontainer/ColumnPropertyTest.java +++ b/server/tests/src/com/vaadin/data/util/sqlcontainer/ColumnPropertyTest.java @@ -58,8 +58,8 @@ public class ColumnPropertyTest { @Test(expected = ReadOnlyException.class) public void setValue_readOnlyNullable_shouldFail() { - ColumnProperty cp = new ColumnProperty("NAME", true, true, true, - false, "Ville", String.class); + ColumnProperty cp = new ColumnProperty("NAME", true, true, true, false, + "Ville", String.class); SQLContainer container = EasyMock.createMock(SQLContainer.class); new RowItem(container, new RowId(new Object[] { 1 }), Arrays.asList(cp)); EasyMock.replay(container); @@ -111,8 +111,8 @@ public class ColumnPropertyTest { @Test public void isReadOnly_readOnlyNullable_returnsTrue() { - ColumnProperty cp = new ColumnProperty("NAME", true, true, true, - false, "Ville", String.class); + ColumnProperty cp = new ColumnProperty("NAME", true, true, true, false, + "Ville", String.class); Assert.assertTrue(cp.isReadOnly()); } @@ -173,8 +173,8 @@ public class ColumnPropertyTest { @Test public void setValue_resetTonullOnNullable_shouldWork() { - ColumnProperty cp = new ColumnProperty("NAME", false, true, true, false, - null, String.class); + ColumnProperty cp = new ColumnProperty("NAME", false, true, true, + false, null, String.class); SQLContainer container = EasyMock.createMock(SQLContainer.class); new RowItem(container, new RowId(new Object[] { 1 }), Arrays.asList(cp)); cp.setValue("asdf"); |