• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

DomCR / MeshIO / 21217519578

21 Jan 2026 04:31PM UTC coverage: 42.523% (+6.1%) from 36.402%
21217519578

push

github

web-flow
Merge pull request #43 from DomCR/fbx-refactor

Fbx refactor v6100

1296 of 2977 branches covered (43.53%)

Branch coverage included in aggregate %.

2189 of 3448 new or added lines in 81 files covered. (63.49%)

123 existing lines in 35 files now uncovered.

4010 of 9501 relevant lines covered (42.21%)

3260.9 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

77.78
/src/MeshIO/NotificationEventArgs.cs
1
using System;
2

3
namespace MeshIO;
4

5
public delegate void NotificationEventHandler(object sender, NotificationEventArgs e);
6

7
public class NotificationEventArgs : EventArgs
8
{
9
        public string Message { get; }
60✔
10

NEW
11
        public NotificationType NotificationType { get; }
×
12

NEW
13
        public Exception Exception { get; }
×
14

15
        public NotificationEventArgs(string message, NotificationType notificationType = NotificationType.Information, Exception exception = null)
60✔
16
        {
60✔
17
                this.Message = message;
60✔
18
                this.NotificationType = notificationType;
60✔
19
                this.Exception = exception;
60✔
20
        }
60✔
21
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc