~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to external/nrefactory/ICSharpCode.NRefactory.Tests/CSharp/Parser/GeneralScope/CommentTests.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
Import upstream version 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright (c) 2010-2013 AlphaSierraPapa for the SharpDevelop Team
 
2
// 
 
3
// Permission is hereby granted, free of charge, to any person obtaining a copy of this
 
4
// software and associated documentation files (the "Software"), to deal in the Software
 
5
// without restriction, including without limitation the rights to use, copy, modify, merge,
 
6
// publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
 
7
// to whom the Software is furnished to do so, subject to the following conditions:
 
8
// 
 
9
// The above copyright notice and this permission notice shall be included in all copies or
 
10
// substantial portions of the Software.
 
11
// 
 
12
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
 
13
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
 
14
// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
 
15
// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
 
16
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 
17
// DEALINGS IN THE SOFTWARE.
 
18
 
 
19
using System;
 
20
using System.Linq;
 
21
using NUnit.Framework;
 
22
 
 
23
namespace ICSharpCode.NRefactory.CSharp.Parser.GeneralScope
 
24
{
 
25
        [TestFixture]
 
26
        public class CommentTests
 
27
        {
 
28
                [Test]
 
29
                public void SimpleComment()
 
30
                {
 
31
                        string program = @"namespace NS {
 
32
        // Comment
 
33
}";
 
34
                        NamespaceDeclaration ns = ParseUtilCSharp.ParseGlobal<NamespaceDeclaration>(program);
 
35
                        var c = ns.GetChildrenByRole(Roles.Comment).Single();
 
36
                        Assert.AreEqual(CommentType.SingleLine, c.CommentType);
 
37
                        Assert.AreEqual(" Comment", c.Content);
 
38
                }
 
39
                
 
40
                [Test]
 
41
                public void CStyleComment()
 
42
                {
 
43
                        string program = @"namespace NS {
 
44
        /* Comment */
 
45
}";
 
46
                        NamespaceDeclaration ns = ParseUtilCSharp.ParseGlobal<NamespaceDeclaration>(program);
 
47
                        var c = ns.GetChildrenByRole(Roles.Comment).Single();
 
48
                        Assert.AreEqual(CommentType.MultiLine, c.CommentType);
 
49
                        Assert.AreEqual(" Comment ", c.Content);
 
50
                }
 
51
                
 
52
                [Test]
 
53
                public void DocumentationComment()
 
54
                {
 
55
                        string program = @"namespace NS {
 
56
        /// Comment
 
57
}";
 
58
                        NamespaceDeclaration ns = ParseUtilCSharp.ParseGlobal<NamespaceDeclaration>(program);
 
59
                        var c = ns.GetChildrenByRole(Roles.Comment).Single();
 
60
                        Assert.AreEqual(CommentType.Documentation, c.CommentType);
 
61
                        Assert.AreEqual(" Comment", c.Content);
 
62
                }
 
63
                
 
64
                [Test, Ignore("Parser bug")]
 
65
                public void SimpleCommentWith4Slashes()
 
66
                {
 
67
                        string program = @"namespace NS {
 
68
        //// Comment
 
69
}";
 
70
                        NamespaceDeclaration ns = ParseUtilCSharp.ParseGlobal<NamespaceDeclaration>(program);
 
71
                        var c = ns.GetChildrenByRole(Roles.Comment).Single();
 
72
                        Assert.AreEqual(CommentType.SingleLine, c.CommentType);
 
73
                        Assert.AreEqual("// Comment", c.Content);
 
74
                }
 
75
                
 
76
                [Test]
 
77
                public void MultilineDocumentationComment()
 
78
                {
 
79
                        string program = @"namespace NS {
 
80
        /** Comment */
 
81
}";
 
82
                        NamespaceDeclaration ns = ParseUtilCSharp.ParseGlobal<NamespaceDeclaration>(program);
 
83
                        var c = ns.GetChildrenByRole(Roles.Comment).Single();
 
84
                        Assert.AreEqual(CommentType.MultiLineDocumentation, c.CommentType);
 
85
                        Assert.AreEqual(" Comment ", c.Content);
 
86
                }
 
87
                
 
88
                [Test]
 
89
                public void EmptyMultilineCommnet()
 
90
                {
 
91
                        string program = @"namespace NS {
 
92
        /**/
 
93
}";
 
94
                        NamespaceDeclaration ns = ParseUtilCSharp.ParseGlobal<NamespaceDeclaration>(program);
 
95
                        var c = ns.GetChildrenByRole(Roles.Comment).Single();
 
96
                        Assert.AreEqual(CommentType.MultiLine, c.CommentType);
 
97
                        Assert.AreEqual("", c.Content);
 
98
                }
 
99
                
 
100
                [Test]
 
101
                public void MultilineCommentWith3Stars()
 
102
                {
 
103
                        string program = @"namespace NS {
 
104
        /*** Comment */
 
105
}";
 
106
                        NamespaceDeclaration ns = ParseUtilCSharp.ParseGlobal<NamespaceDeclaration>(program);
 
107
                        var c = ns.GetChildrenByRole(Roles.Comment).Single();
 
108
                        Assert.AreEqual(CommentType.MultiLine, c.CommentType);
 
109
                        Assert.AreEqual("** Comment ", c.Content);
 
110
                }
 
111
        }
 
112
}