Skip to content
Snippets Groups Projects
Commit 624497e1 authored by Anton Bagliy's avatar Anton Bagliy
Browse files

CHG: disable unnecessary tests

parent 30b09dac
Branches
No related merge requests found
......@@ -76,6 +76,7 @@ namespace TestASTParser
}
[TestFixture]
[Ignore("This test is disabled")]
public class WriteTests
{
......@@ -93,6 +94,7 @@ namespace TestASTParser
{
[Test]
[Ignore("This test is disabled")]
public void TestIf()
{
Assert.Fail();
......@@ -100,6 +102,7 @@ namespace TestASTParser
}
[Test]
[Ignore("This test is disabled")]
public void TestVarDef()
{
Assert.Fail();
......
......@@ -26,6 +26,7 @@ namespace TestDescentParser
}
[Test]
[Ignore("This test is disabled")]
public void TestWhile()
{
Assert.IsTrue(Parse(@"begin while 5 do a:=2 end"));
......@@ -74,6 +75,7 @@ namespace TestDescentParser
}
[Test]
[Ignore("This test is disabled")]
public void TestIf()
{
Assert.IsTrue(Parse(@"begin
......@@ -99,6 +101,7 @@ namespace TestDescentParser
}
[Test]
[Ignore("This test is disabled")]
public void TestExpr()
{
Assert.IsTrue(Parse(@"begin
......
......@@ -40,6 +40,7 @@ namespace TestGeneratedLexer
}
[Test]
[Ignore("This test is disabled")]
public void TestString()
{
LexerAddon lexer = new LexerAddon(@"3 389 3 'ssfsf ' ");
......@@ -49,6 +50,7 @@ namespace TestGeneratedLexer
}
[Test]
[Ignore("This test is disabled")]
public void TestSingleLineCmt()
{
LexerAddon lexer = new LexerAddon(@"i22d1 5.6 // i 32 id3
......@@ -61,6 +63,7 @@ namespace TestGeneratedLexer
}
[Test]
[Ignore("This test is disabled")]
public void TestMultiLineCmt()
{
LexerAddon lexer = new LexerAddon(@"i22d1 5.6 { i 32 id3
......@@ -73,6 +76,7 @@ namespace TestGeneratedLexer
}
[Test]
[Ignore("This test is disabled")]
public void TestMultiLineCmtIds()
{
LexerAddon lexer = new LexerAddon(@"i22d1 5.6 { i 32 id3
......
......@@ -133,6 +133,7 @@ namespace TestLexer
}
[TestFixture]
[Ignore("This test is disabled")]
public class TestIntNotZeroLexer
{
[Test]
......@@ -177,6 +178,7 @@ namespace TestLexer
}
[TestFixture]
[Ignore("This test is disabled")]
public class TestLetterDigitLexer
{
......@@ -216,6 +218,7 @@ namespace TestLexer
[TestFixture]
[Ignore("This test is disabled")]
public class TestLetterListLexer
{
[Test]
......@@ -278,6 +281,7 @@ namespace TestLexer
}
[TestFixture]
[Ignore("This test is disabled")]
public class TestDigitListLexer
{
[Test]
......@@ -326,6 +330,7 @@ namespace TestLexer
}
[TestFixture]
[Ignore("This test is disabled")]
public class TestLetterDigitGroupLexer
{
[Test]
......@@ -376,6 +381,7 @@ namespace TestLexer
}
[TestFixture]
[Ignore("This test is disabled")]
public class TestDoubleLexer
{
public TestDoubleLexer()
......@@ -418,6 +424,7 @@ namespace TestLexer
}
[TestFixture]
[Ignore("This test is disabled")]
public class TestQuotedStringLexer
{
......@@ -453,6 +460,7 @@ namespace TestLexer
}
[TestFixture]
[Ignore("This test is disabled")]
public class TestCommentLexer
{
......@@ -487,6 +495,7 @@ namespace TestLexer
}
[Ignore("This test is disabled")]
[TestFixture]
public class TestIdChainLexer
{
......
......@@ -19,6 +19,7 @@ namespace TestSimpleLexer
}
[TestFixture]
[Ignore("This test is disabled")]
public class TestSimpleLexer
{
public static List< KeyValuePair<Tok, string> > getLexerOutput(Lexer l)
......@@ -55,6 +56,7 @@ namespace TestSimpleLexer
}
[TestFixture]
[Ignore("This test is disabled")]
public class TestSimpleLexerOps
{
[Test]
......@@ -124,6 +126,7 @@ namespace TestSimpleLexer
}
[TestFixture]
[Ignore("This test is disabled")]
public class TestSimpleLexerAssigns
{
[Test]
......@@ -161,6 +164,7 @@ namespace TestSimpleLexer
public class TestSimpleLexerComparisons
{
[Test]
[Ignore("This test is disabled")]
public void TestComparisons()
{
string text = @"><>>=<=+<> > <=";
......@@ -214,6 +218,7 @@ namespace TestSimpleLexer
}
[TestFixture]
[Ignore("This test is disabled")]
public class TestSimpleLexerLineCmt
{
[Test]
......@@ -275,6 +280,7 @@ namespace TestSimpleLexer
}
[TestFixture]
[Ignore("This test is disabled")]
public class TestSimpleLexerMultLineCmt
{
[Test]
......
......@@ -20,6 +20,7 @@ namespace TestVisitors
}
[TestFixture]
[Ignore("This test is disabled")]
public class TestAvgOpCount: ParserTest
{
[Test]
......@@ -71,6 +72,7 @@ namespace TestVisitors
}
[TestFixture]
[Ignore("This test is disabled")]
public class TestCommonVariable: ParserTest
{
[Test]
......@@ -95,6 +97,7 @@ namespace TestVisitors
}
[TestFixture]
[Ignore("This test is disabled")]
public class TestExprComplexity: ParserTest
{
[Test]
......@@ -199,6 +202,7 @@ namespace TestVisitors
}
[TestFixture]
[Ignore("This test is disabled")]
public class TestIfCycleNest: ParserTest
{
[Test]
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment