*/
@Test
public void testConstraintsToAFNOR() {
Constraints std, fra;
std = new DefaultConstraints("Some constraints.");
fra = (Constraints) FrenchProfile.toAFNOR(std);
assertNotSame("Expected a copy.", std, fra);
assertSame ("Already an AFNOR instance.", fra, FrenchProfile.toAFNOR(fra));
assertEquals ("Some constraints.", getSingleton(fra.getUseLimitations()).toString());