@Test
  public void testGetterAndSetter() {
    InternationalStandardRecordingCode isrc = new InternationalStandardRecordingCode();

    isrc.setCountry(Locale.GERMANY.getCountry());
    Assert.assertEquals(Locale.GERMANY.getCountry(), isrc.getCountry());

    isrc.setRegistrant("AAA");
    Assert.assertEquals("AAA", isrc.getRegistrant());

    isrc.setRegistrant("Aaa");
    Assert.assertEquals("AAA", isrc.getRegistrant());

    isrc.setYear(3);
    Assert.assertEquals(3, isrc.getYear());

    isrc.setYear(3);
    Assert.assertEquals(3, isrc.getYear());

    isrc.setNumber(1);
    Assert.assertEquals(1, isrc.getNumber());
  }