/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package de.cismet.cismap.commons.gui.piccolo; import org.junit.After; import org.junit.AfterClass; import static org.junit.Assert.assertNotNull; import org.junit.Before; import org.junit.BeforeClass; import org.junit.Ignore; import org.junit.Test; /** * * @author pd */ public class PSwingFullTest { public PSwingFullTest() { } @BeforeClass public static void setUpClass() { } @AfterClass public static void tearDownClass() { } @Before public void setUp() { } @After public void tearDown() { } @Test @Ignore public void testPSwingFull() { final TestPSwingFull testPSwingFull = new TestPSwingFull(); assertNotNull(testPSwingFull); } }