aboutsummaryrefslogtreecommitdiffstats
path: root/compatibility-server/src/test/java/com/vaadin/v7/data/util/ContainerHierarchicalWrapperTest.java
blob: aa3187fde8295763be00af67371f36e26ffb3729 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.vaadin.v7.data.util;

import org.junit.Test;

public class ContainerHierarchicalWrapperTest
        extends AbstractHierarchicalContainerTestBase {

    @Test
    public void testBasicOperations() {
        testBasicContainerOperations(
                new ContainerHierarchicalWrapper(new IndexedContainer()));
    }

    @Test
    public void testHierarchicalContainer() {
        testHierarchicalContainer(
                new ContainerHierarchicalWrapper(new IndexedContainer()));
    }

    @Test
    public void testRemoveSubtree() {
        testRemoveHierarchicalWrapperSubtree(
                new ContainerHierarchicalWrapper(new IndexedContainer()));
    }

}