Index: /trunk/t3q-examples/CodeFormatting/Generic/formattingIssues.ttcn3
===================================================================
--- /trunk/t3q-examples/CodeFormatting/Generic/formattingIssues.ttcn3	(revision 54)
+++ /trunk/t3q-examples/CodeFormatting/Generic/formattingIssues.ttcn3	(revision 55)
@@ -1,7 +1,7 @@
 module formattingIssues {
 	import from a all;
-	import from a all;
+	import from ab all;
 	
-	group a {
+	group ga {
 	function f_ssMsInitiateDhcpv4(){
 		//blas bla blas
@@ -11,5 +11,5 @@
 	}
     function f_ssMsStartDhcpv4 (){
- 		var integer a := b;
+ 		var integer ai := b;
  
     }
Index: /trunk/t3q-examples/NamingConventions/NC_parameters_functions_testCases_altsteps.ttcn3
===================================================================
--- /trunk/t3q-examples/NamingConventions/NC_parameters_functions_testCases_altsteps.ttcn3	(revision 54)
+++ /trunk/t3q-examples/NamingConventions/NC_parameters_functions_testCases_altsteps.ttcn3	(revision 55)
@@ -15,5 +15,5 @@
     //altsteps, good and bad
     altstep a_a1()  {
-    }
+    } with {extension "Description: Does IUT behaves as UA Server ?"}
 
     altstep a_1()  {
Index: /trunk/t3q-examples/checkLogFormat/checkLogFormat.ttcn3
===================================================================
--- /trunk/t3q-examples/checkLogFormat/checkLogFormat.ttcn3	(revision 54)
+++ /trunk/t3q-examples/checkLogFormat/checkLogFormat.ttcn3	(revision 55)
@@ -6,4 +6,18 @@
         //incorrect
         log ( "***" )
+        
+        test();
+        //correct
+        log("*** f_1: INFO: OK - random value = " & bit2str(v_random) & " ***");
+        
+        test();
+        //correct - function calls are ignored
+        log("*** f_1: " & getMyStatus() & "INFO: OK - random value = " & bit2str(v_random) & " ***");
+        
+        test();
+        //incorrect - charstring function call parameters are taken into consideration resulting in
+        //an incorrect log statement format
+        log("*** f_1: " & getMyStatus("1") & "INFO: OK - random value = " & bit2str(v_random) & " ***");
+        
     }
 
Index: /trunk/t3q-examples/checkNoUnusedLocalDefinitions/checkNoUnusedLocalDefinitionsOverImport.ttcn3
===================================================================
--- /trunk/t3q-examples/checkNoUnusedLocalDefinitions/checkNoUnusedLocalDefinitionsOverImport.ttcn3	(revision 55)
+++ /trunk/t3q-examples/checkNoUnusedLocalDefinitions/checkNoUnusedLocalDefinitionsOverImport.ttcn3	(revision 55)
@@ -0,0 +1,7 @@
+module checkNoUnusedLocalDefinitionsOverImport {
+	import from checkNoUnusedLocalDefinitions {type all};
+	
+	function f_1 () runs on someComponent{
+		p1.send("a");
+	}
+}
