/**
 * 
 */
package ua.org.msangel.j2ee.hib.model;

import static org.junit.Assert.fail;

import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * @author msangel
 *
 */
public class SomeLogicTest {
    final static Logger log = LoggerFactory.getLogger("myerrlogger");
    
    

    static{
        log.info("SomeLogicTest static loading");
    }
    
    public SomeLogicTest() {
        log.info("SomeLogicTest object created");
    }

    /**
     * @throws java.lang.Exception
     */
    @BeforeClass
    public static void setUpBeforeClass() throws Exception {
        log.info("setUpBeforeClass we r");
    }

    /**
     * @throws java.lang.Exception
     */
    @AfterClass
    public static void tearDownAfterClass() throws Exception {
        log.info("tearDownAfterClass we r");
    }

    /**
     * @throws java.lang.Exception
     */
    @Before
    public void setUp() throws Exception {
        log.info("setUp we r");
    }

    /**
     * @throws java.lang.Exception
     */
    @After
    public void tearDown() throws Exception {
        log.info("tearDown we r");
    }

    /**
     * Test method for {@link ua.org.msangel.j2ee.hib.model.SomeLogic#add(int)}.
     */
    @Test
    public void testAdd() {
        log.info("testAdd run here");
        fail("Not yet implemented"); // TODO
    }

    /**
     * Test method for {@link ua.org.msangel.j2ee.hib.model.SomeLogic#multiply(int)}.
     */
    @Test
    public void testMultiply() {
        log.info("testMultiply run here");
        fail("Not yet implemented"); // TODO
    }
    
}