Clover.NET coverage report - Coverage for s2container.net

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

File Stats: LOC: 70   Methods: 3
NCLOC: 47 Classes: 1
 
Source File Conditionals Statements Methods TOTAL
Seasar.Tests.Framework.Util\ResourceUtilTest.cs 50.0% 83.3% 100.0% 82.4%
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 System.IO;
21   using System.Reflection;
22   using NUnit.Framework;
23   using Seasar.Framework.Util;
24  
25   namespace Seasar.Tests.Framework.Util
26   {
27   /// <summary>
28   /// ResourceUtilTest の概要の説明です。
29   /// </summary>
30   [TestFixture]
31   public class ResourceUtilTest
32   {
33 1 [Test]
34   public void TestGetExtension()
35   {
36 1 Assert.AreEqual("xml", ResourceUtil.GetExtension("aaa.bbb.xml"));
37 1 Assert.AreEqual(null, ResourceUtil.GetExtension("aaa"));
38   }
39  
40 1 [Test]
41   public void TestGetResourceAsStream()
42   {
43 1 StreamReader stream = ResourceUtil.GetResourceAsStreamReader(
44   "Seasar.Tests.Framework.Util.test1.xml", Assembly.GetExecutingAssembly());
45 1 Console.WriteLine(stream.ReadToEnd());
46 1 stream.Close();
47   }
48  
49 1 [Test]
50   public void TestResourceNotFound()
51   {
52 1 StreamReader stream = null;
53 1 try
54   {
55 1 stream = ResourceUtil.GetResourceAsStreamReader(
56   "Seasar.Tests.Framework.Util.test2.xml", Assembly.GetExecutingAssembly());
57 0 Assert.Fail();
58   }
59   catch(ResourceNotFoundRuntimeException ex)
60   {
61 1 Console.WriteLine(ex.Message);
62   }
63   finally
64   {
65 0 if(stream != null) stream.Close();
66   }
67   }
68   }
69   }
70