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

Floating-Dartists / matomo-tracker / 8519131083

02 Apr 2024 07:36AM CUT coverage: 92.848%. Remained the same
8519131083

push

github

TesteurManiak
Merge branch 'main' into dev

753 of 811 relevant lines covered (92.85%)

2.9 hits per line

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

71.43
/lib/src/exceptions.dart
1
class MatomoException implements Exception {
2
  const MatomoException({
22✔
3
    required this.message,
4
  });
5

6
  final String message;
7

8
  @override
1✔
9
  String toString() => 'MatomoException: $message';
2✔
10
}
11

12
class UninitializedMatomoInstanceException extends MatomoException {
13
  const UninitializedMatomoInstanceException()
22✔
14
      : super(
×
15
          message:
16
              'MatomoTracker has not been initialized properly, call the method initialize() first.',
17
        );
18
}
19

20
class AlreadyInitializedMatomoInstanceException extends MatomoException {
21
  const AlreadyInitializedMatomoInstanceException()
21✔
22
      : super(
×
23
          message: 'MatomoTracker has already been initialized. '
24
              'You can check the initialize property to see if it has been initialized.',
25
        );
26
}
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

© 2025 Coveralls, Inc