Clover.NET coverage report - Coverage for s2container.net

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

File Stats: LOC: 134   Methods: 22
NCLOC: 94 Classes: 1
 
Source File Conditionals Statements Methods TOTAL
Seasar.Tests.Extension.ADO\Impl\Employee.cs - 39.3% 54.5% 46.0%
coverage 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 Employee
26   {
27   private long empno;
28  
29   private string ename;
30  
31   private string job;
32  
33   private NullableInt16 mgr;
34  
35   private NullableDateTime hiredate;
36  
37   private NullableSingle sal;
38  
39   private NullableSingle comm;
40  
41   private NullableInt32 deptno;
42  
43   private NullableDateTime tstamp;
44  
45   private Department department;
46  
47 16 public Employee()
48   {
49   }
50  
51 0 public Employee(
52   long empno,
53   string ename,
54   string job,
55   NullableInt16 mgr,
56   NullableDateTime hiredate,
57   NullableSingle sal,
58   NullableSingle comm,
59   NullableInt32 deptno,
60   NullableDateTime tstamp
61   )
62   {
63   this.empno = empno;
64   this.ename = ename;
65   this.job = job;
66   this.mgr = mgr;
67   this.sal = sal;
68   this.comm = comm;
69   this.deptno = deptno;
70   this.tstamp = tstamp;
71   }
72  
73   public long Empno
74   {
75 15 set { empno = value; }
76 16 get { return empno; }
77   }
78  
79   public string Ename
80   {
81 16 set { ename = value; }
82 16 get { return ename; }
83   }
84  
85   public string Job
86   {
87 16 set { job = value; }
88 0 get { return job; }
89   }
90  
91   public NullableInt16 Mgr
92   {
93 15 set { mgr = value; }
94 0 get { return mgr; }
95   }
96  
97   public NullableDateTime Hiredate
98   {
99 15 set { hiredate = value; }
100 0 get { return hiredate; }
101   }
102  
103   public NullableSingle Sal
104   {
105 15 set { sal = value; }
106 0 get { return sal; }
107   }
108  
109   public NullableSingle Comm
110   {
111 15 set { comm = value; }
112 0 get { return comm; }
113   }
114  
115   public NullableInt32 Deptno
116   {
117 15 set { deptno = value; }
118 0 get { return deptno; }
119   }
120  
121   public NullableDateTime Tstamp
122   {
123 15 set { tstamp = value; }
124 0 get { return tstamp; }
125   }
126  
127 0 public Department Department
128   {
129   set { department = value; }
130   get { return department; }
131   }
132   }
133   }
134