public void testThatSecurityPriceIsImported() throws ParseException
{
Client client = buildClient();
Security security = client.getSecurities().get(0);
SecurityPriceDef def = new SecurityPriceDef();
def.build(client, security, //
new String[] { "2013-01-01", "123,45" }, //
buildField2Column(def));
SecurityPrice price = security.getSecurityPrice(Dates.date(2013, Calendar.JANUARY, 1));
assertThat(price.getValue(), is(12345L));