Clover.NET coverage report - Coverage for s2container.net

Coverage timestamp: 2006年5月30日 11:21:29

File Stats: LOC: 87   Methods: 12
NCLOC: 57 Classes: 1
 
Source File Conditionals Statements Methods TOTAL
Seasar.Tests.Extension.ADO\Impl\Department.cs - 0.0% 0.0% 0.0%
coverage
1   #region Copyright
2   /*
3   * Copyright 2005 the Seasar Foundation and the Others.
4   *
5   * Licensed under the Apache License, Version 2.0 (the "License");
6   * you may not use this file except in compliance with the License.
7   * You may obtain a copy of the License at
8   *
9   * http://www.apache.org/licenses/LICENSE-2.0
10   *
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
14   * either express or implied. See the License for the specific language
15   * governing permissions and limitations under the License.
16   */
17   #endregion
18  
19   using System;
20   using Nullables;
21  
22   namespace Seasar.Tests.Extension.ADO.Impl
23   {
24   [Serializable]
25   public class Department
26   {
27   private int deptno;
28  
29   private string dname;
30  
31   private string loc;
32  
33   private NullableInt32 versionNo;
34  
35   private NullableBoolean active;
36  
37 0 public Department()
38   {
39   }
40  
41 0 public Department(
42   int deptno,
43   string dname,
44   string loc,
45   NullableInt32 versionNo,
46   NullableBoolean active
47   )
48   {
49   this.deptno = deptno;
50   this.dname = dname;
51   this.loc = loc;
52   this.versionNo = versionNo;
53   this.active = active;
54   }
55  
56 0 public int Deptno
57   {
58   set { deptno = value; }
59   get { return deptno; }
60   }
61  
62 0 public string Dname
63   {
64   set { dname = value; }
65   get { return dname; }
66   }
67  
68 0 public string Loc
69   {
70   set { loc = value; }
71   get { return loc; }
72   }
73  
74 0 public NullableInt32 VersionNo
75   {
76   set { versionNo = value; }
77   get { return versionNo; }
78   }
79  
80 0 public NullableBoolean Active
81   {
82   set { active = value; }
83   get { return active; }
84   }
85   }
86   }
87