public final class OneWayMigratorTest extends MyrrixTest {
@Test
public void testForward() throws Exception {
IDMigrator migrator = new OneWayMigrator();
assertEquals(4060265690780417169L, migrator.toLongID("foobar"));
assertEquals(-3162216497309240828L, migrator.toLongID(""));
}
@Test(expected = UnsupportedOperationException.class)
public void testBackward() throws Exception {