Example #1
0
        public void TestDiagnostic()
        {
            MockMessageProvider provider = new MockMessageProvider();
            SyntaxTree syntaxTree = new MockSyntaxTree();
            CultureInfo englishCulture = CultureHelpers.EnglishCulture;

            DiagnosticInfo di1 = new DiagnosticInfo(provider, 1);
            Assert.Equal(1, di1.Code);
            Assert.Equal(DiagnosticSeverity.Error, di1.Severity);
            Assert.Equal("MOCK0001", di1.MessageIdentifier);
            Assert.Equal("The first error", di1.GetMessage(englishCulture));

            DiagnosticInfo di2 = new DiagnosticInfo(provider, 1002, "Elvis", "Mort");
            Assert.Equal(1002, di2.Code);
            Assert.Equal(DiagnosticSeverity.Warning, di2.Severity);
            Assert.Equal("MOCK1002", di2.MessageIdentifier);
            Assert.Equal("The second warning about Elvis and Mort", di2.GetMessage(englishCulture));

            Location l1 = new SourceLocation(syntaxTree, new TextSpan(5, 8));
            var d1 = new CSDiagnostic(di2, l1);
            Assert.Equal(l1, d1.Location);
            Assert.Same(syntaxTree, d1.Location.SourceTree);
            Assert.Equal(new TextSpan(5, 8), d1.Location.SourceSpan);
            Assert.Equal(0, d1.AdditionalLocations.Count());
            Assert.Same(di2, d1.Info);
        }
Example #2
0
        private Diagnostic CreateDiagnostic(int code)
        {
            MockMessageProvider provider = new MockMessageProvider();
            DiagnosticInfo      di       = new DiagnosticInfo(provider, code);

            return(new Diagnostic(di, new EmptyMockLocation()));
        }
        public static void Main()
        {
            var fileMessageSender = new FileMessagesesSender(ConnectionCredentials.ServerName, ConnectionCredentials.UDPServerPort, messageSize);

            var fileMessages = new MockMessageProvider().GetFileMessages().ToList();

            fileMessageSender.SendBatched(fileMessages, ProtocolTypeEnum.UDP);

            Console.WriteLine($"\nTotal Transfer time (s):{fileMessageSender.TotalTransferTime.TotalSeconds}\n");

            Console.Read();
        }
Example #4
0
        public void TestCustomErrorInfo()
        {
            MockMessageProvider provider = new MockMessageProvider();
            SyntaxTree syntaxTree = new MockSyntaxTree();

            DiagnosticInfo di3 = new CustomErrorInfo(provider, "OtherSymbol", new SourceLocation(syntaxTree, new TextSpan(14, 8)));
            var d3 = new CSDiagnostic(di3, new SourceLocation(syntaxTree, new TextSpan(1, 1)));
            Assert.Same(syntaxTree, d3.Location.SourceTree);
            Assert.Equal(new TextSpan(1, 1), d3.Location.SourceSpan);
            Assert.Equal(1, d3.AdditionalLocations.Count());
            Assert.Equal(new TextSpan(14, 8), d3.AdditionalLocations.First().SourceSpan);
            Assert.Equal("OtherSymbol", (d3.Info as CustomErrorInfo).OtherSymbol);
        }
Example #5
0
 private Diagnostic CreateDiagnostic(int code)
 {
     MockMessageProvider provider = new MockMessageProvider();
     DiagnosticInfo di = new DiagnosticInfo(provider, code);
     return new Diagnostic(di, new EmptyMockLocation());
 }