package com.ontology2.bakemono.mapmap; import org.apache.hadoop.io.LongWritable; import org.apache.hadoop.io.Text; import org.apache.hadoop.mapreduce.Mapper; import org.junit.Before; import org.junit.Test; import java.io.IOException; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.verifyNoMoreInteractions; public class UniqueSubjectMapperTest { UniqueURISubjectMapper mapper; @Before public void setup() { mapper=new UniqueURISubjectMapper(); } @Test public void testExternalURITriple() throws IOException, InterruptedException { Text t=new Text("<http://a.example.com/>\t<http://b.example.com/>\t<http://c.example.com/> ."); Mapper.Context c=mock(Mapper.Context.class); mapper.map(new LongWritable(75),t,c); verify(c).write(new Text("<http://a.example.com/>"),new LongWritable(1)); verifyNoMoreInteractions(c); } }