We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab9e2ab commit 9878db5Copy full SHA for 9878db5
test/core/servient_test.dart
@@ -34,8 +34,8 @@ class MockedProtocolClientFactory implements ProtocolClientFactory {
34
}
35
36
void main() {
37
- group("Servient Tests", () {
38
- test("Should accept a ProtocolClientFactory list as constructor argument",
+ group("Servient", () {
+ test("should accept a ProtocolClientFactory list as constructor argument",
39
() {
40
final servient = Servient(
41
clientFactories: [
@@ -47,7 +47,7 @@ void main() {
47
});
48
49
test(
50
- "Should allow for adding and removing a ProtocolClientFactory at runtime",
+ "should allow for adding and removing a ProtocolClientFactory at runtime",
51
52
final servient = Servient()
53
..addClientFactory(MockedProtocolClientFactory());
0 commit comments