Clover.NET coverage report - Coverage

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

File Stats: LOC: 64   Methods: 2
NCLOC: 29 Classes: 1
 
Source File Conditionals Statements Methods TOTAL
Configuration\Sql\Dynamic\Elements\BaseTag.cs - 100.0 % 100.0 % 100.0 %
coverage
1  
2   #region Apache Notice
3   /*****************************************************************************
4   * $Header: $
5   * $Revision: $
6   * $Date: $
7   *
8   * iBATIS.NET Data Mapper
9   * Copyright (C) 2004 - Gilles Bayon
10   *
11   *
12   * Licensed under the Apache License, Version 2.0 (the "License");
13   * you may not use this file except in compliance with the License.
14   * You may obtain a copy of the License at
15   *
16   * http://www.apache.org/licenses/LICENSE-2.0
17   *
18   * Unless required by applicable law or agreed to in writing, software
19   * distributed under the License is distributed on an "AS IS" BASIS,
20   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21   * See the License for the specific language governing permissions and
22   * limitations under the License.
23   *
24   ********************************************************************************/
25   #endregion
26  
27   #region Imports
28   using System;
29   using System.Xml.Serialization;
30   #endregion
31  
32   namespace IBatisNet.DataMapper.Configuration.Sql.Dynamic.Elements
33   {
34   /// <summary>
35   /// Summary description for BaseTag.
36   /// </summary>
37   [Serializable]
38   public abstract class BaseTag : SqlTag
39   {
40   #region Fields
41  
42   [NonSerialized]
43   private string _property = string.Empty;
44  
45   #endregion
46  
47   /// <summary>
48   /// Property attribute
49   /// </summary>
50   [XmlAttribute("property")]
51   public string Property
52   {
53 124 get
54   {
55 124 return _property;
56   }
57 5440 set
58   {
59 5440 _property = value;
60   }
61   }
62   }
63   }
64