import org.junit.Assert;
import org.junit.Test;


public class WorkingTest {

	@Test
	public void shouldPass() {
		Assert.assertNotNull(this);
	}
}
