final CHFCurrency chf = new CHFCurrency();
QL.info("testing correct initialization...");
assertTrue(chf.name().equalsIgnoreCase("Swiss franc"));
assertTrue(chf.code().equalsIgnoreCase("CHF"));
assertEquals(chf.numericCode(),756);
assertTrue(chf.symbol().equalsIgnoreCase("SwF"));
assertTrue(chf.fractionSymbol().equalsIgnoreCase(""));
assertEquals(chf.fractionsPerUnit(),100);
assertEquals(chf.rounding().type(), Rounding.Type.None);
//Note: the initialization of the triangulated currency is a little bit suspicious...