Package au.org.intersect.samifier.domain

Source Code of au.org.intersect.samifier.domain.EqualProteinOLNMapUnitTest

package au.org.intersect.samifier.domain;

import au.org.intersect.samifier.domain.EqualProteinOLNMap;
import org.junit.Before;
import org.junit.Test;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;

public class EqualProteinOLNMapUnitTest
{
    EqualProteinOLNMap map = null;

    @Before
    public void oneTimeSetup()
    {
        map = new EqualProteinOLNMap();
    }

    @Test
    public void testContainsProtein()
    {
        assertTrue(map.containsProtein("one"));
    }

    @Test
    public void testMapsCorrectlr()
    {
        assertEquals("one", map.getOLN("one"));
    }
}
TOP

Related Classes of au.org.intersect.samifier.domain.EqualProteinOLNMapUnitTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.