LCOV - code coverage report
Current view: top level - Cqrs/Entities - IntegerRange.cs Hit Total Coverage
Test: doc-coverage.info Lines: 2 2 100.0 %
Date: 2017-07-26

          Line data    Source code
       1             : using System;
       2             : 
       3             : namespace Cqrs.Entities
       4             : {
       5             :         /// <summary>
       6             :         /// A <see cref="Range{TPrimitive}"/> object for collecting a <see cref="int"/> lower and upper limit.
       7             :         /// </summary>
       8             :         public class IntegerRange : Range<int>
       9           1 :         {
      10             :                 /// <summary>
      11             :                 /// Instantiates and Initialises a new instance of the <see cref="IntegerRange"/> class.
      12             :                 /// </summary>
      13           1 :                 public IntegerRange()
      14             :                 {
      15             :                         IsFromInclusive = true;
      16             :                         IsToInclusive = true;
      17             :                 }
      18             :         }
      19             : }

Generated by: LCOV version 1.10