--- Source Coverage Results ---
--- File: Q:\aWrite\@it\DotTest\Sample\Sample001\Module1.vb ---
     1 |   | Module Module1
     2 |   |
     3 | > |     Public Function Add(ByVal x As Integer, ByVal y As Integer) As Integer
     4 | > |         Return x + y
     5 | > |     End Function
     6 |   |
     7 | > |     Public Function Subtract(ByVal x As Integer, ByVal y As Integer) As Integer
     8 | > |         Return x - y
     9 | > |     End Function
    10 |   |
    11 | > |     Public Function Mult(ByVal x As Integer, ByVal y As Integer) As Integer
    12 | > |         Return x * y
    13 | > |     End Function
    14 |   |
    15 | > |     Public Function Div(ByVal x As Integer, ByVal y As Integer) As Integer
    16 | > |         Return x / y
    17 | > |     End Function
    18 |   |
    19 | > |     Sub Main()
    20 | > |         Console.WriteLine(Add(3, 2))
    21 | > |         Console.WriteLine(Subtract(3, 2))
    22 | > |         Console.WriteLine(Mult(3, 2))
    23 | > |         Console.WriteLine(Div(3, 2))
    24 | > |     End Sub
    25 |   |
    26 |   | End Module