Commit 0ac8a1cf authored by juvancic's avatar juvancic
Browse files

default steps declared

parent e989ad6c
Loading
Loading
Loading
Loading
+39 −1
Original line number Diff line number Diff line
@@ -122,6 +122,44 @@ group DiameterChecks

group DefaultsTestStep
{
 //TODO   	
    altstep a_llp_default() runs on DiameterComponent
    {
        [] any timer.timeout 
         {
           setverdict(fail); 
           all timer.stop;
           //stop
         }
        [] DIAMP.receive	(mw_llp_disconnectIndication(vc_ETS_conn))
          {
            tc_wait.stop;
            vc_ETS_conn:=0;
            setverdict (fail);
          };
        
    } 
    
    altstep a_diameter_default() runs on DiameterComponent
    {
        [] any timer.timeout 
         {
           setverdict(fail); 
           all timer.stop;
           //stop
         }
        [] DIAMP.receive	(mw_llp_dataIndication(vc_ETS_conn, */*DWR*/))
          {
            //f_send(/*DWA*/);
          };
        [] DIAMP.receive	(mw_llp_dataIndication(vc_ETS_conn, */*CER*/))
          {
            //f_send(/*CEA*/);
          };
          
        
    }     
    
    
      	
} // end of group DefaultsTestStep
} // end module LibSip_Steps
 No newline at end of file