javaquery/api/src/test/java/org/apidesign/bck2brwsr/htmlpage/ModelTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 20 Jan 2013 14:29:10 +0100
branchmodel
changeset 491 14268cd404a4
parent 490 e089ef6785c0
child 499 af027874f93e
permissions -rw-r--r--
The model can contain derived properties
     1 /**
     2  * Back 2 Browser Bytecode Translator
     3  * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, version 2 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12  * GNU General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program. Look for COPYING file in the top folder.
    16  * If not, see http://opensource.org/licenses/GPL-2.0.
    17  */
    18 package org.apidesign.bck2brwsr.htmlpage;
    19 
    20 import org.apidesign.bck2brwsr.htmlpage.api.ComputedProperty;
    21 import org.apidesign.bck2brwsr.htmlpage.api.Page;
    22 import org.apidesign.bck2brwsr.htmlpage.api.Property;
    23 import static org.testng.Assert.*;
    24 import org.testng.annotations.Test;
    25 
    26 /**
    27  *
    28  * @author Jaroslav Tulach <jtulach@netbeans.org>
    29  */
    30 @Page(xhtml = "Empty.html", className = "Model", properties = {
    31     @Property(name = "value", type = int.class)
    32 })
    33 public class ModelTest {
    34     @Test public void classGeneratedWithSetterGetter() {
    35         Class<?> c = Model.class;
    36         assertNotNull(c, "Class for empty page generated");
    37         Model.setValue(10);
    38         assertEquals(10, Model.getValue(), "Value changed");
    39     }
    40     
    41     @Test public void computedMethod() {
    42         Model.setValue(4);
    43         assertEquals(16, Model.getPowerValue());
    44     }
    45     
    46     @ComputedProperty
    47     static int powerValue(int value) {
    48         return value * value;
    49     }
    50 }