chore(debug): removed debug code

This commit is contained in:
Jon Samwell 2020-11-30 15:43:37 +11:00
parent 4b0ef616b4
commit 1c6a9cba2a
3 changed files with 3 additions and 58 deletions

View File

@ -1,14 +1 @@
# Defines a default set of lint rules enforced for
# projects at Google. For details and rationale,
# see https://github.com/dart-lang/pedantic#enabled-lints.
include: package:pedantic/analysis_options.yaml
# For lint rules and documentation, see http://dart-lang.github.io/linter/lints.
# Uncomment to specify additional rules.
# linter:
# rules:
# - camel_case_types
# analyzer:
# exclude:
# - path/to/excluded/files/**
include: package:pedantic/analysis_options.1.9.0.yaml

View File

@ -29,46 +29,4 @@ StepDefinitionGeneric ThenExpectElementToHaveValue() {
}
},
);
}
class AuthenticationSteps {
static Iterable<StepDefinitionGeneric> steps = [
StepOne(),
StepFive(),
];
static StepDefinitionGeneric StepOne() => given(
'some step',
(context) async {
// do something
},
);
static StepDefinitionGeneric StepFive() => given2<String, int, FlutterWorld>(
'step five with {string} and {int}',
(str, value, context) async {
// do something
},
);
}
class AccountSteps {
static Iterable<StepDefinitionGeneric> steps = [
StepOne(),
StepFive(),
];
static StepDefinitionGeneric StepOne() => given(
'some step account step',
(context) async {
// do something
},
);
static StepDefinitionGeneric StepFive() => given2<String, int, FlutterWorld>(
'step five with {string} and {int}',
(str, value, context) async {
// do something
},
);
}
}

View File

@ -22,6 +22,6 @@ dependencies:
dev_dependencies:
test:
pedantic:
pedantic: ^1.9.2
flutter: