1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- /**
- * 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
- */
- #include <string>
- #include "gtest/gtest.h"
- #include "ShallowHistory.h"
- #include "sc_types.h"
- static ShallowHistory* statechart;
- class StatemachineTest : public ::testing::Test{
- protected:
- virtual void SetUp() {
- statechart = new ShallowHistory();
- statechart->init();
- }
- virtual void TearDown() {
- delete statechart;
- }
- };
- TEST_F(StatemachineTest, shallowHistoryTest) {
-
-
- statechart->enter();
-
- statechart->getDefaultSCI()->raise_event1();
-
- statechart->runCycle();;
-
- statechart->getDefaultSCI()->raise_event3();
-
- statechart->runCycle();;
-
- statechart->getDefaultSCI()->raise_event5();
-
- statechart->runCycle();;
-
- statechart->getDefaultSCI()->raise_event7();
-
- statechart->runCycle();;
-
- EXPECT_TRUE(!statechart->isStateActive(ShallowHistory::mainRegion_State1));
-
- EXPECT_TRUE(statechart->isStateActive(ShallowHistory::mainRegion_State2__region0_State4__region0_State7__region0_State9));
-
- statechart->getDefaultSCI()->raise_event6();
-
- statechart->runCycle();;
-
- EXPECT_TRUE(!statechart->isStateActive(ShallowHistory::mainRegion_State2__region0_State4__region0_State7__region0_State9));
-
- EXPECT_TRUE(statechart->isStateActive(ShallowHistory::mainRegion_State2__region0_State4__region0_State6));
-
- statechart->getDefaultSCI()->raise_event5();
-
- statechart->runCycle();;
-
- EXPECT_TRUE(!statechart->isStateActive(ShallowHistory::mainRegion_State2__region0_State4__region0_State7__region0_State8));
-
- EXPECT_TRUE(statechart->isStateActive(ShallowHistory::mainRegion_State2__region0_State4__region0_State7__region0_State9));
-
- statechart->getDefaultSCI()->raise_event2();
-
- statechart->runCycle();;
-
- EXPECT_TRUE(!statechart->isStateActive(ShallowHistory::mainRegion_State2__region0_State4__region0_State7__region0_State9));
-
- EXPECT_TRUE(statechart->isStateActive(ShallowHistory::mainRegion_State1));
-
- statechart->getDefaultSCI()->raise_event1();
-
- statechart->runCycle();;
-
- EXPECT_TRUE(statechart->isStateActive(ShallowHistory::mainRegion_State2__region0_State4__region0_State6));
-
- EXPECT_TRUE(!statechart->isStateActive(ShallowHistory::mainRegion_State1));
-
- statechart->getDefaultSCI()->raise_event5();
-
- statechart->runCycle();;
-
- EXPECT_TRUE(!statechart->isStateActive(ShallowHistory::mainRegion_State2__region0_State4__region0_State6));
-
- EXPECT_TRUE(statechart->isStateActive(ShallowHistory::mainRegion_State2__region0_State4__region0_State7__region0_State9));
-
- }
|