Clover.NET coverage report - Coverage

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

File Stats: LOC: 115   Methods: 7
NCLOC: 61 Classes: 1
 
Source File Conditionals Statements Methods TOTAL
Configuration\Sql\Dynamic\Elements\Iterate.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   using System;
28   using System.Xml.Serialization;
29  
30   using IBatisNet.DataMapper.Configuration.Sql.Dynamic.Handlers;
31  
32   namespace IBatisNet.DataMapper.Configuration.Sql.Dynamic.Elements
33   {
34   /// <summary>
35   /// Represent an iterate sql tag element.
36   /// </summary>
37   [Serializable]
38   [XmlRoot("iterate")]
39   public class Iterate : BaseTag
40   {
41  
42   #region Fields
43  
44   [NonSerialized]
45   private string _open = string.Empty;
46   [NonSerialized]
47   private string _close = string.Empty;
48   [NonSerialized]
49   private string _conjunction = string.Empty;
50  
51   #endregion
52  
53  
54   /// <summary>
55   /// Conjonction attribute
56   /// </summary>
57   [XmlAttribute("conjunction")]
58   public string Conjunction
59   {
60 16 get
61   {
62 16 return _conjunction;
63   }
64 1360 set
65   {
66 1360 _conjunction = value;
67   }
68   }
69  
70  
71   /// <summary>
72   /// Close attribute
73   /// </summary>
74   [XmlAttribute("close")]
75   public string Close
76   {
77 8 get
78   {
79 8 return _close;
80   }
81 1360 set
82   {
83 1360 _close = value;
84   }
85   }
86  
87  
88   /// <summary>
89   /// Open attribute
90   /// </summary>
91   [XmlAttribute("open")]
92   public string Open
93   {
94 8 get
95   {
96 8 return _open;
97   }
98 1360 set
99   {
100 1360 _open = value;
101   }
102   }
103  
104  
105   /// <summary>
106   ///
107   /// </summary>
108 1360 public Iterate()
109   {
110 1360 this.Handler = new IterateTagHandler();
111   }
112  
113   }
114   }
115