~ubuntu-branches/ubuntu/feisty/nant/feisty

« back to all changes in this revision

Viewing changes to tests/NAnt.DotNet/Tasks/AssemblyInfoTaskTest.cs

  • Committer: Bazaar Package Importer
  • Author(s): Dave Beckett
  • Date: 2006-06-12 23:30:36 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060612233036-a1uwh0949z0218ep
Tags: 0.84+0.85-rc4-1
* New upstream release
* Acknowledge NMU (Closes: #372588)
* Standards-Version 3.7.2
* Update to latest CLI policy package split.  Build-Depends-Indep: on
  cli-common-dev, libmono-winforms1.0-cil, libmono-winforms2.0-cil and
  mono-gmcs to get 1.0 and 2.0 packages
* Removed patches no longer needed:
  - 01-AssemblyInfoTask.cs.patch
  - 02-ScriptTask.cs.patch
  - 03-XmlResultFormatter.cs.patch
  - 04-SourceControl.patch
  - 05-ExceptionTest.cs

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// NAnt - A .NET build tool
 
2
// Copyright (C) 2001-2005 Gerry Shaw
 
3
//
 
4
// This program is free software; you can redistribute it and/or modify
 
5
// it under the terms of the GNU General Public License as published by
 
6
// the Free Software Foundation; either version 2 of the License, or
 
7
// (at your option) any later version.
 
8
//
 
9
// This program is distributed in the hope that it will be useful,
 
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
// GNU General Public License for more details.
 
13
//
 
14
// You should have received a copy of the GNU General Public License
 
15
// along with this program; if not, write to the Free Software
 
16
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
17
//
 
18
// Gert Driesen (gert.driesen@ardatis.com)
 
19
 
 
20
using NUnit.Framework;
 
21
 
 
22
using Tests.NAnt.Core;
 
23
 
 
24
namespace Tests.NAnt.DotNet.Tasks {
 
25
    [TestFixture]
 
26
    public class AssemblyInfoTaskTest : BuildTestBase {
 
27
        private const string _buildXml = @"<?xml version='1.0'?>
 
28
            <project>
 
29
                <asminfo output='AssemblyInfo.cs' language='CSharp'>
 
30
                    <imports>
 
31
                        <import namespace='System' />
 
32
                        <import namespace='System.Reflection' />
 
33
                        <import namespace='System.Runtime.InteropServices' />
 
34
                    </imports>
 
35
                    <attributes>
 
36
                        <attribute type='ComVisibleAttribute' value='false' />
 
37
                        <attribute type='CLSCompliantAttribute' value='true' />
 
38
                        <attribute type='AssemblyVersionAttribute' value='1.0.0.0' />
 
39
                        <attribute type='AssemblyTitleAttribute' value='My fun assembly' />
 
40
                        <attribute type='AssemblyDescriptionAttribute' value='More fun than a barrel of monkeys' />
 
41
                        <attribute type='AssemblyCopyrightAttribute' value='Copyright (c) 2002, Monkeyboy, Inc.' />
 
42
                    </attributes>
 
43
                </asminfo>
 
44
            </project>";
 
45
 
 
46
        [Test]
 
47
        public void Test_Normal() {
 
48
            RunBuild(_buildXml);
 
49
        }
 
50
    }
 
51
}
 
 
b'\\ No newline at end of file'