Clover.NET coverage report - Coverage for s2dao.net

Coverage timestamp: 2006年5月18日 15:09:15

File Stats: LOC: 29   Methods: 0
NCLOC: 12 Classes: 1
 
Source File Conditionals Statements Methods TOTAL
Seasar.Dao.Tests.Impl\DepartmentAutoDao.cs - - - -
coverage
1   using System;
2   using Seasar.Dao.Attrs;
3  
4   namespace Seasar.Dao.Tests.Impl
5   {
6   /// <summary>
7   /// DepartmentAutoDao の概要の説明です。
8   /// </summary>
9   [Bean(typeof(Department))]
10   public interface DepartmentAutoDao
11   {
12   void Insert(Department department);
13  
14   //TODO:存在するとNotSupportedExceptionになる
15   //void InsertBatch(Department[] departents);
16  
17   void Update(Department department);
18  
19   //TODO:存在するとNotSupportedExceptionになる
20   //void UpdateBatch(Department[] departents);
21  
22   void Delete(Department department);
23  
24   //TODO:存在するとNotSupportedExceptionになる
25   //void DeleteBatch(Department[] departents);
26  
27   }
28   }
29