001package org.kuali.ole.ingest.util; 002 003import org.apache.log4j.Logger; 004import org.junit.Test; 005 006 007/** 008 * Created with IntelliJ IDEA. 009 * User: ? 010 * Date: 11/8/12 011 * Time: 6:52 PM 012 * To change this template use File | Settings | File Templates. 013 */ 014 015public class OCLCUtil_UT { 016 017 private static Logger logger = Logger.getLogger( ISSNUtil_UT.class ); 018 019 @Test 020 public void testNormalization() throws Exception { 021 OCLCUtil oclcUtil = new OCLCUtil(); 022 String oclc = "(OCoLC) ocm000000002"; 023 String oclc1 = "(OCoLC)ocm07002373" ; 024 String oclc2 = "(OCoLC) ocm00123456 800630"; 025 String normalizedOCLC = oclcUtil.normalizedOclc(oclc); 026 String normalizedOCLC1 = oclcUtil.normalizedOclc(oclc1); 027 String normalizedOCLC2 = oclcUtil.normalizedOclc(oclc2); 028 if(logger.isInfoEnabled()){ 029 logger.info( "normalizedOCLC----------->" + normalizedOCLC ); 030 logger.info( "normalizedOCLC1----------->" + normalizedOCLC1 ); 031 logger.info( "normalizedOCLC2----------->" + normalizedOCLC2 ); 032 } 033 } 034}