123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- /**
- * Copyright (c) 2014 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 "Operations.h"
- #include "OperationsRequired.h"
- bool internalOperation1Called;
- bool internalOperation2Called;
- sc_integer internalOp2Param;
- bool interfaceOperation1Called;
- bool interfaceOperation2Called;
- sc_integer interfaceOp2Param;
- bool unnamedInterfaceOperation1Called;
- bool unnamedInterfaceOperation2Called;
- sc_integer unnamedInterfaceOp2Param;
- char myChar;
- Operations handle;
- TEST(StatemachineTest, OperationCallback) {
- internalOperation1Called = false;
- internalOperation2Called = false;
- internalOp2Param = 0;
- interfaceOperation1Called = false;
- interfaceOperation2Called = false;
- interfaceOp2Param = 0;
- unnamedInterfaceOperation1Called = false;
- unnamedInterfaceOperation2Called = false;
- unnamedInterfaceOp2Param = 0;
- operations_init(&handle);
- operations_enter(&handle);
- operations_runCycle(&handle);
- EXPECT_TRUE(operations_isStateActive(&handle, Operations_main_region_B));
- EXPECT_TRUE(internalOperation1Called);
- EXPECT_TRUE(internalOperation2Called);
- EXPECT_TRUE(internalOp2Param == 4);
-
-
-
-
-
- operationsIface_raise_ev(&handle);
- operations_runCycle(&handle);
- EXPECT_TRUE(operations_isStateActive(&handle, Operations_main_region_C));
- EXPECT_TRUE(interfaceOperation1Called);
- EXPECT_TRUE(interfaceOperation2Called);
- EXPECT_TRUE(interfaceOp2Param == 4);
-
-
-
- operationsIface_raise_ev(&handle);
- operations_runCycle(&handle);
- EXPECT_TRUE(operations_isStateActive(&handle, Operations_main_region_D));
- EXPECT_TRUE(unnamedInterfaceOperation1Called);
- EXPECT_TRUE(unnamedInterfaceOperation2Called);
- EXPECT_TRUE(unnamedInterfaceOp2Param == 4);
-
- }
- void operationsInternal_internalOperation1(const Operations* handle){
- internalOperation1Called = true;
- }
- sc_boolean operationsInternal_internalOperation2(const Operations* handle, const sc_integer param1){
- internalOperation2Called = true;
- internalOp2Param = param1;
- return true;
- }
- sc_real operationsInternal_internalOperation3(const Operations* handle){
- return 0.0d;
- }
- sc_real operationsInternal_internalOperation3a(const Operations* handle, const sc_real param1){
- return 0.0d;
- }
- sc_integer operationsInternal_internalOperation4(const Operations* handle){
- return 0;
- }
- sc_integer operationsInternal_internalOperation4a(const Operations* handle, const sc_integer param1){
- return 0;
- }
- sc_string operationsInternal_internalOperation5(const Operations* handle){
- return &myChar;
- }
- sc_string operationsInternal_internalOperation5a(const Operations* handle, const sc_string param1){
- return &myChar;
- }
- void operationsIfaceInterface1_interfaceOperation1(const Operations* handle){
- interfaceOperation1Called = true;
- }
- sc_boolean operationsIfaceInterface1_interfaceOperation2(const Operations* handle, const sc_integer param1){
- interfaceOperation2Called = true;
- interfaceOp2Param = param1;
- return true;
- }
- sc_real operationsIfaceInterface1_interfaceOperation3(const Operations* handle){
- return 0.0d;
- }
- sc_real operationsIfaceInterface1_interfaceOperation3a(const Operations* handle, const sc_real param1){
- return 0.0d;
- }
- sc_integer operationsIfaceInterface1_interfaceOperation4(const Operations* handle){
- return 0;
- }
- sc_integer operationsIfaceInterface1_interfaceOperation4a(const Operations* handle, const sc_integer param1){
- return 0;
- }
- sc_string operationsIfaceInterface1_interfaceOperation5(const Operations* handle){
- return &myChar;
- }
- sc_string operationsIfaceInterface1_interfaceOperation5a(const Operations* handle, const sc_string param1){
- return &myChar;
- }
- void operationsIface_unnamedInterfaceOperation1(const Operations* handle){
- unnamedInterfaceOperation1Called = true;
- }
- sc_boolean operationsIface_unnamedInterfaceOperation2(const Operations* handle, const sc_integer param1){
- unnamedInterfaceOperation2Called = true;
- unnamedInterfaceOp2Param = param1;
- return true;
- }
- sc_real operationsIface_unnamedOperation3(const Operations* handle){
- return 0.0d;
- }
- sc_real operationsIface_unnamedOperation3a(const Operations* handle, const sc_real param1){
- return 0.0d;
- }
- sc_integer operationsIface_unnamedOperation4(const Operations* handle){
- return 0;
- }
- sc_integer operationsIface_unnamedOperation4a(const Operations* handle, const sc_integer param1){
- return 0;
- }
- sc_string operationsIface_unnamedOperation5(const Operations* handle){
- return &myChar;
- }
- sc_string operationsIface_unnamedOperation5a(const Operations* handle, const sc_string param1){
- return &myChar;
- }
- sc_boolean operationsIface_alwaysTrue(const Operations* handle){
- return true;
- }
|