/** * Copyright (c) 2017 committers of YAKINDU and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * committers of YAKINDU - initial API and implementation */ package org.yakindu.sct.generator.java.test; import org.junit.*; import static org.junit.Assert.*; import org.yakindu.scr.performancetest.PerformanceTestStatemachine; import org.yakindu.scr.performancetest.PerformanceTestStatemachine.State; import org.yakindu.scr.TimerService; /** * Unit TestCase for PerformanceTest */ @SuppressWarnings("all") public class PerformanceTestsTest { private PerformanceTestStatemachine statemachine; @Before public void setUp() { statemachine = new PerformanceTestStatemachine(); statemachine.setTimer(new TimerService()); statemachine.init(); } @After public void tearDown() { statemachine = null; } @Test public void testTest_100_000() { performance(100000l); } @Test public void testTest_1_000_000() { performance(1000000l); } @Test public void testTest_10_000_000() { performance(10000000l); } public void performance(long perf) { statemachine.enter(); assertTrue(statemachine.isStateActive(State.mr_A)); while (statemachine.getC() < perf) { if (statemachine.isStateActive(State.mr_A)) { statemachine.raiseE1(); } else { if (statemachine.getC()%2l == 0l) { statemachine.raiseE2(); } else { statemachine.raiseE3(); } } statemachine.runCycle(); } assertTrue(statemachine.getA() > 2l); } }