1 package org.kuali.ole.deliver.util;
2
3 import org.junit.Test;
4
5 import static org.junit.Assert.*;
6
7
8
9
10 public class OleItemRecordForCircTest {
11
12 @Test
13 public void getFullPathLocation() {
14 OleItemRecordForCirc oleItemRecordForCirc = new OleItemRecordForCirc();
15 oleItemRecordForCirc.setItemLocation("shelving");
16 oleItemRecordForCirc.setCollectionLocation("collection");
17 oleItemRecordForCirc.setItemLibraryLocation("library");
18 String itemFullPathLocation = oleItemRecordForCirc.getItemFullPathLocation();
19 assertNotNull(itemFullPathLocation);
20 System.out.println(itemFullPathLocation);
21 }
22
23 }