Clover.NET coverage report - Coverage

Coverage timestamp: Friday, May 20, 2005 9:17:00 PM

File Stats: LOC: 51   Methods: 1
NCLOC: 19 Classes: 1
 
Source File Conditionals Statements Methods TOTAL
Configuration\Sql\Dynamic\Elements\IsNotEqual.cs - 100.0 % 100.0 % 100.0 %
coverage
1   #region Apache Notice
2   /*****************************************************************************
3   * $Header: $
4   * $Revision: $
5   * $Date: $
6   *
7   * iBATIS.NET Data Mapper
8   * Copyright (C) 2004 - Gilles Bayon
9   *
10   *
11   * Licensed under the Apache License, Version 2.0 (the "License");
12   * you may not use this file except in compliance with the License.
13   * You may obtain a copy of the License at
14   *
15   * http://www.apache.org/licenses/LICENSE-2.0
16   *
17   * Unless required by applicable law or agreed to in writing, software
18   * distributed under the License is distributed on an "AS IS" BASIS,
19   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20   * See the License for the specific language governing permissions and
21   * limitations under the License.
22   *
23   ********************************************************************************/
24   #endregion
25  
26   #region Imports
27   using System;
28   using System.Xml.Serialization;
29  
30   using IBatisNet.DataMapper.Configuration.Sql.Dynamic.Handlers;
31   #endregion
32  
33   namespace IBatisNet.DataMapper.Configuration.Sql.Dynamic.Elements
34   {
35   /// <summary>
36   /// Represent an isNotEqual sql tag element.
37   /// </summary>
38   [Serializable]
39   [XmlRoot("isNotEqual")]
40   public class IsNotEqual: Conditional
41   {
42   /// <summary>
43   ///
44   /// </summary>
45 680 public IsNotEqual()
46   {
47 680 this.Handler = new IsNotEqualTagHandler();
48   }
49   }
50   }
51