view src/test/java/net/borgac/clusterrpc/ClusterRPCRootTest.java @ 0:ed6ea43af3f4

Initial commit
author Lewin Bormann <lbo@spheniscida.de>
date Fri, 23 Sep 2016 16:23:46 +0200
parents
children
line wrap: on
line source

/*
 * 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 net.borgac.clusterrpc;

import org.junit.After;
import org.junit.AfterClass;
import org.junit.Assert;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;

/**
 *
 * @author lbo
 */
public class ClusterRPCRootTest {

    public ClusterRPCRootTest() {
    }

    @BeforeClass
    public static void setUpClass() {
    }

    @AfterClass
    public static void tearDownClass() {
    }

    @Before
    public void setUp() {
    }

    @After
    public void tearDown() {
    }

    // TODO add test methods here.
    // The methods must be annotated with annotation @Test. For example:
    //
    // @Test
    // public void hello() {}
    @Test
    public void testThatTestingWorks() {
        Assert.assertTrue(true);
    }
}