blob: f907b07d3e513a6edf8a61b8b72511c606cff8c2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012, 2020 Original authors and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Original authors and others - initial API and implementation
******************************************************************************/
package org.eclipse.nebula.widgets.nattable.dataset.generator;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import org.eclipse.nebula.widgets.nattable.dataset.pricing.PricingDataBean;
import org.junit.Test;
public class DataGeneratorTest {
@Test
public void testGenerate() {
try {
PricingDataBean pricingDataBean = new DataGenerator<PricingDataBean>().generate(PricingDataBean.class);
assertNotNull(pricingDataBean);
assertTrue(pricingDataBean.getBid() >= 0.0d);
assertTrue(pricingDataBean.getBid() < 10000.0d);
assertTrue(pricingDataBean.getAsk() >= 0.0d);
assertTrue(pricingDataBean.getAsk() < 10000.0d);
assertTrue(pricingDataBean.getClosingPrice() >= 0.0d);
assertTrue(pricingDataBean.getClosingPrice() < 10000.0d);
assertNotNull(pricingDataBean.getPricingSource());
} catch (GeneratorException e) {
fail(e.getMessage() + " : " + e.getCause().getMessage());
}
}
}