private FormWidget makeUsualForm() throws Exception {
//Creating form :-)
FormWidget testForm = new FormWidget();
testForm._getComponent().init(new MockEnviroment());
//Adding elements to form
testForm.addElement("myCheckBox", "my checkbox", new CheckboxControl(), new BooleanData(), true);
testForm.addElement("myLongText", "my long text", new TextControl(), new LongData(), false);
testForm.addElement("myDateTime", "my date and time", new DateTimeControl(), new DateData(), false);