Package org.mifosplatform.mix.report.service

Source Code of org.mifosplatform.mix.report.service.ReadTaxonomyMappingServiceImplTest

/**
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package org.mifosplatform.mix.report.service;

import static org.junit.Assert.assertEquals;

import java.util.ArrayList;

import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mifosplatform.infrastructure.core.service.RoutingDataSource;
import org.mifosplatform.mix.service.XBRLResultServiceImpl;
import org.mockito.Mockito;
import org.mockito.runners.MockitoJUnitRunner;

@RunWith(MockitoJUnitRunner.class)
public class ReadTaxonomyMappingServiceImplTest {

    private XBRLResultServiceImpl readService;

    @Before
    public void setUp() throws Exception {
        final RoutingDataSource dataSource = Mockito.mock(RoutingDataSource.class);
        this.readService = new XBRLResultServiceImpl(dataSource, null, null);

    }

    @Test
    public void shouldCorrectlyGetGLCode() {
        final ArrayList<String> result = this.readService.getGLCodes("{12000}+{11000}");
        assertEquals("12000", result.get(0));
        assertEquals("11000", result.get(1));
    }

}
TOP

Related Classes of org.mifosplatform.mix.report.service.ReadTaxonomyMappingServiceImplTest

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.