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

Floating-Dartists / matomo-tracker / 5783655279

07 Aug 2023 09:54AM CUT coverage: 92.976%. First build
5783655279

Pull #116

github

web-flow
Merge b2c67dea3 into 8d2097577
Pull Request #116: Bump mocktail from 0.3.0 to 1.0.0

728 of 783 relevant lines covered (92.98%)

2.92 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