I have deleted some warnings :)
[puzzles.git] / test / com / github / puzzles / test / SlidingTest.java
blobe0ebfd54a3e602031ef518b238b7b94cb5614735
1 /*
2 * To change this license header, choose License Headers in Project Properties.
3 * To change this template file, choose Tools | Templates
4 * and open the template in the editor.
5 */
7 package com.github.puzzles.test;
9 import org.junit.After;
10 import org.junit.AfterClass;
11 import org.junit.Before;
12 import org.junit.BeforeClass;
13 import org.junit.Test;
15 import com.github.puzzles.core.SlidingPuzzle;
17 /**
19 * @author root
21 public class SlidingTest {
23 SlidingPuzzle sp = new SlidingPuzzle(5, 5);
25 public SlidingTest() {
28 @BeforeClass
29 public static void setUpClass() {
32 @AfterClass
33 public static void tearDownClass() {
36 @Before
37 public void setUp() {
40 @After
41 public void tearDown() {
44 @Test
45 public void checkTest() {
47 // Main.printPuzzle(sp);
48 // assertThat(sp.check(), is(true));
51 @Test
52 public void slidTest() {