~nunit-core/nunitv2/2.5

« back to all changes in this revision

Viewing changes to src/NUnitCore/tests/SuiteBuilderTests_Multiple.cs

  • Committer: charliepoole
  • Date: 2006-01-06 01:08:17 UTC
  • Revision ID: vcs-imports@canonical.com-20060106010817-z6xazs4kd89zj8j1
Move core from under NUnitFramework to NUnitCore directory

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#region Copyright (c) 2003, James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole, Philip A. Craig
 
2
/************************************************************************************
 
3
'
 
4
' Copyright  2002-2003 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole
 
5
' Copyright  2000-2002 Philip A. Craig
 
6
'
 
7
' This software is provided 'as-is', without any express or implied warranty. In no 
 
8
' event will the authors be held liable for any damages arising from the use of this 
 
9
' software.
 
10
 
11
' Permission is granted to anyone to use this software for any purpose, including 
 
12
' commercial applications, and to alter it and redistribute it freely, subject to the 
 
13
' following restrictions:
 
14
'
 
15
' 1. The origin of this software must not be misrepresented; you must not claim that 
 
16
' you wrote the original software. If you use this software in a product, an 
 
17
' acknowledgment (see the following) in the product documentation is required.
 
18
'
 
19
' Portions Copyright  2002-2003 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole
 
20
' or Copyright  2000-2002 Philip A. Craig
 
21
'
 
22
' 2. Altered source versions must be plainly marked as such, and must not be 
 
23
' misrepresented as being the original software.
 
24
'
 
25
' 3. This notice may not be removed or altered from any source distribution.
 
26
'
 
27
'***********************************************************************************/
 
28
#endregion
 
29
 
 
30
using System;
 
31
using System.Collections;
 
32
using NUnit.Framework;
 
33
using NUnit.Core;
 
34
using NUnit.Util;
 
35
using NUnit.Tests.Assemblies;
 
36
 
 
37
namespace NUnit.Core.Tests
 
38
{
 
39
        [TestFixture]
 
40
        public class SuiteBuilderTests_Multiple
 
41
        {
 
42
                private static readonly int totalTests = NoNamespaceTestFixture.Tests + MockAssembly.Tests;
 
43
 
 
44
                private TestSuiteBuilder builder;
 
45
                private static string[] assemblies = new string[]
 
46
                        { "nonamespace-assembly.dll", "mock-assembly.dll" };
 
47
                private TestSuite loadedSuite;
 
48
 
 
49
                [SetUp]
 
50
                public void LoadSuite()
 
51
                {
 
52
                        builder = new TestSuiteBuilder();
 
53
                        loadedSuite = builder.Build( "TestSuite", assemblies );
 
54
                }
 
55
 
 
56
                [Test]
 
57
                public void BuildSuite()
 
58
                {
 
59
                        Assert.IsNotNull( loadedSuite );
 
60
                }
 
61
 
 
62
                [Test]
 
63
                public void RootNode()
 
64
                {
 
65
                        Assert.IsTrue( loadedSuite is RootTestSuite );
 
66
                        Assert.AreEqual( "TestSuite", loadedSuite.Name );
 
67
                }
 
68
 
 
69
                [Test]
 
70
                public void AssemblyNodes()
 
71
                {
 
72
                        Assert.IsTrue( loadedSuite.Tests[0] is TestAssembly );
 
73
                        Assert.IsTrue( loadedSuite.Tests[1] is TestAssembly );
 
74
                }
 
75
 
 
76
                [Test]
 
77
                public void TestCaseCount()
 
78
                {
 
79
                        Assert.AreEqual( totalTests , loadedSuite.CountTestCases());
 
80
                }
 
81
 
 
82
                [Test]
 
83
                public void LoadFixture()
 
84
                {
 
85
                        TestSuite suite = builder.Build( 
 
86
                                "MultipleAssemblies", assemblies, 
 
87
                                "NUnit.Tests.Assemblies.MockTestFixture" );
 
88
                        Assert.IsNotNull( suite );
 
89
                        Assert.AreEqual( MockTestFixture.Tests, suite.CountTestCases() );
 
90
                }
 
91
        }
 
92
}