package org.pegadi.server.publication; import org.junit.Before; import org.junit.Ignore; import org.junit.Test; import org.pegadi.server.AbstractDatabaseTest; import org.pegadi.server.PublicationServer; import static org.junit.Assert.fail; /** * @author Marvin B. Lillehaug <lillehau@underdusken.no> */ public class PublicationServerImplTest extends AbstractDatabaseTest { private PublicationServer publicationServer; @Before public void setUp() throws Exception { publicationServer = new PublicationServerImpl(); ((PublicationServerImpl) publicationServer).setDataSource(getDataSource()); } @Test @Ignore public void testGetPublicationByID() throws Exception { fail(); } @Test @Ignore public void testGetYearsWithPublications() throws Exception { fail(); } @Test @Ignore public void testGetPublicationsByYear() throws Exception { fail(); } @Test @Ignore public void testGetActivePublications() throws Exception { fail(); } @Test @Ignore public void testSavePublication() throws Exception { fail(); } @Test @Ignore public void testUpdatePublication() throws Exception { fail(); } }