Clover.NET coverage report - Coverage for s2dao.net

Coverage timestamp: 2006年5月30日 11:48:56

File Stats: LOC: 20   Methods: 0
NCLOC: 14 Classes: 1
 
Source File Conditionals Statements Methods TOTAL
Seasar.Dao.Tests.Interceptors\IEmployeeAutoDao.cs - - - -
coverage
1   using System;
2   using System.Collections;
3   using Seasar.Dao.Attrs;
4  
5   namespace Seasar.Dao.Tests.Interceptors
6   {
7   [Bean(typeof(Employee))]
8   public interface IEmployeeAutoDao
9   {
10  
11   Employee GetEmployee(int empno);
12  
13   [Query("sal BETWEEN /*minSal*/ and /*maxSal*/")]
14   IList GetEmployeesBySal(float minSal, float maxSal);
15  
16   int Insert(Employee employee);
17  
18   }
19   }
20