dnet-hadoop/dhp-common/src/test/java/eu/dnetlib/dhp/model/mdstore/MetadataRecordTest.java

15 lines
290 B
Java
Raw Normal View History

2019-04-03 16:05:16 +02:00
package eu.dnetlib.dhp.model.mdstore;
import org.junit.Test;
import static org.junit.Assert.assertTrue;
public class MetadataRecordTest {
@Test
public void getTimestamp() {
MetadataRecord r = new MetadataRecord();
assertTrue(r.getDateOfCollection() >0);
}
}