Commit c8131cea authored by berge's avatar berge
Browse files

Initial import

parent 8fe80b9f
Loading
Loading
Loading
Loading
+21 −0
Original line number Diff line number Diff line
/**
 *  
 *  @author     ETSI
 *  @version    $URL$
 *              $Id$
 *  @desc       Module containing test cases for SmartAppliances
 *
 */
module SmartAppliances_TestSystem {

	import from OneM2M_TestSystem all;
	
	type component SmartAppliancesSystem extends AeSystem {
		
	}
	
	type component SmartAppliancesTester extends AeTester {
		
	}

}
 No newline at end of file
+18 −0
Original line number Diff line number Diff line
/**
 *  
 *  @author     ETSI
 *  @version    $URL$
 *              $Id$
 *  @desc       Test control module for SmartAppliances
 *
 */
module SmartAppliances_TestControl {


	import from SmartAppliances_Testcases all;	

	control {
  
	}

}
 No newline at end of file
+33 −0
Original line number Diff line number Diff line
/**
 *  
 *  @author     ETSI
 *  @version    $URL$
 *              $Id$
 *  @desc       Module containing test cases for SmartAppliances
 *
 */
module SmartAppliances_Testcases {

	import from SmartAppliances_TestSystem all;
	import from OneM2M_Functions all;
	
	testcase TC_SAP_XXX() runs on SmartAppliancesTester system SmartAppliancesSystem {
    				
		// Local variables
							   
		// Test control
	
		// Test component configuration
		f_cf0XXUp();
	
		// Test adapter configuration
	
		// Preamble
						
		// Test Body

		// Postamble
		f_postamble_deleteResources();
	
	}
}
 No newline at end of file