Package com.vaadin.tests.server.component.treetable

Source Code of com.vaadin.tests.server.component.treetable.TreeTableSetContainerNull

package com.vaadin.tests.server.component.treetable;

import junit.framework.TestCase;

import com.vaadin.ui.TreeTable;

public class TreeTableSetContainerNull extends TestCase {

    public void testNullContainer() {
        TreeTable treeTable = new TreeTable();

        // should not cause an exception
        treeTable.setContainerDataSource(null);
    }
}
TOP

Related Classes of com.vaadin.tests.server.component.treetable.TreeTableSetContainerNull

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.