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

Floating-Dartists / matomo-tracker / 6492014594

12 Oct 2023 06:19AM CUT coverage: 93.108%. First build
6492014594

Pull #124

github

web-flow
Merge 981f45404 into 27a0bf2df
Pull Request #124: chore: bump dependencies, fix formatting

743 of 798 relevant lines covered (93.11%)

2.87 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({
20✔
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()
20✔
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()
19✔
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