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

asartalo / diligence / 8123419961

02 Mar 2024 07:48AM UTC coverage: 84.788% (+0.5%) from 84.326%
8123419961

push

github

asartalo
fix: focusing ancestor task focuses not done leaves

3 of 3 new or added lines in 1 file covered. (100.0%)

53 existing lines in 5 files now uncovered.

1020 of 1203 relevant lines covered (84.79%)

1.82 hits per line

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

75.0
/lib/models/commands/command.dart
1
import 'package:flutter/foundation.dart' show immutable;
2

3
@immutable
4
abstract class Command {
5
  final String? message;
6
  final DateTime at;
7

8
  Command({this.message}) : at = DateTime.now();
6✔
9
}
10

11
@immutable
12
abstract class CommandPack<T> extends Command {
13
  T get payload;
14
  CommandPack({super.message});
2✔
15
}
16

17
@immutable
18
class NoOpCommand extends Command {
19
  NoOpCommand();
1✔
20
}
21

UNCOV
22
final noOpCommand = NoOpCommand();
×
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