aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests/Common/TestHelper.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Tests/Common/TestHelper.cs8
1 files changed, 5 insertions, 3 deletions
diff --git a/OpenSim/Tests/Common/TestHelper.cs b/OpenSim/Tests/Common/TestHelper.cs
index 21c2875..588c9fa 100644
--- a/OpenSim/Tests/Common/TestHelper.cs
+++ b/OpenSim/Tests/Common/TestHelper.cs
@@ -47,12 +47,14 @@ namespace OpenSim.Tests.Common
47 47
48 return false; 48 return false;
49 } 49 }
50 50
51 // A debugging method that can be used to print out which test method you are in 51 /// <summary>
52 /// A debugging method that can be used to print out which test method you are in
53 /// </summary>
52 public static void InMethod() 54 public static void InMethod()
53 { 55 {
54 StackTrace stackTrace = new StackTrace(); 56 StackTrace stackTrace = new StackTrace();
55 Console.WriteLine("In Test Method : {0}", stackTrace.GetFrame(1).GetMethod().Name); 57 Console.WriteLine("==> In Test Method : {0}", stackTrace.GetFrame(1).GetMethod().Name);
56 } 58 }
57 } 59 }
58} 60}