File tree Expand file tree Collapse file tree 1 file changed +1
-16
lines changed Expand file tree Collapse file tree 1 file changed +1
-16
lines changed Original file line number Diff line number Diff line change 1
- using System . Collections . Generic ;
2
- using Microsoft . VisualStudio . TestTools . UnitTesting ;
1
+ using Microsoft . VisualStudio . TestTools . UnitTesting ;
3
2
using Rubberduck . Parsing . Annotations ;
4
3
using Rubberduck . VBEditor ;
5
4
@@ -57,20 +56,6 @@ public void IgnoreTestAnnotation_TypeIsIgnoreTest()
57
56
Assert . AreEqual ( AnnotationType . IgnoreTest , annotation . AnnotationType ) ;
58
57
}
59
58
60
- [ TestMethod , ExpectedException ( typeof ( InvalidAnnotationArgumentException ) ) ]
61
- public void IgnoreAnnotation_TypeIsIgnore_NoParam ( )
62
- {
63
- var annotation = new IgnoreAnnotation ( new QualifiedSelection ( ) , new List < string > ( ) ) ;
64
- Assert . AreEqual ( AnnotationType . Ignore , annotation . AnnotationType ) ;
65
- }
66
-
67
- [ TestMethod , ExpectedException ( typeof ( InvalidAnnotationArgumentException ) ) ]
68
- public void FolderAnnotation_TypeIsFolder_NoParam ( )
69
- {
70
- var annotation = new FolderAnnotation ( new QualifiedSelection ( ) , new List < string > ( ) ) ;
71
- Assert . AreEqual ( AnnotationType . Folder , annotation . AnnotationType ) ;
72
- }
73
-
74
59
[ TestMethod ]
75
60
public void IgnoreAnnotation_TypeIsIgnore ( )
76
61
{
You can’t perform that action at this time.
0 commit comments