test: organize tests into groups

This commit is contained in:
Aleksey Kulikov 2021-06-18 17:36:44 +03:00
parent 4bc2da5800
commit dadd235b66
3 changed files with 58 additions and 48 deletions

View file

@ -204,7 +204,7 @@ Map<String, String> getEntries(Pointer<git_config> cfg) {
/// (usually the local one).
///
/// Throws a [LibGit2Error] if error occured.
void deleteVariable(Pointer<git_config> cfg, String variable) {
void deleteEntry(Pointer<git_config> cfg, String variable) {
final name = variable.toNativeUtf8().cast<Int8>();
final error = libgit2.git_config_delete_entry(cfg, name);
calloc.free(name);
@ -218,7 +218,7 @@ void deleteVariable(Pointer<git_config> cfg, String variable) {
///
/// If regexp is present, then the iterator will only iterate over all
/// values which match the pattern.
List<String> getMultivar(
List<String> getMultivarValue(
Pointer<git_config> cfg,
String variable,
String? regexp,
@ -252,7 +252,7 @@ List<String> getMultivar(
/// highest level (usually the local one).
///
/// The regular expression is applied case-sensitively on the value.
void setMultivar(
void setMultivarValue(
Pointer<git_config> cfg,
String variable,
String regexp,

View file

@ -138,9 +138,9 @@ class Config {
/// (usually the local one).
///
/// Throws a [LibGit2Error] if error occured.
void deleteVariable(String variable) {
void deleteEntry(String variable) {
try {
config.deleteVariable(configPointer.value, variable);
config.deleteEntry(configPointer.value, variable);
} catch (e) {
rethrow;
}
@ -150,8 +150,8 @@ class Config {
///
/// If [regexp] is present, then the iterator will only iterate over all
/// values which match the pattern.
List<String> getMultivar(String variable, {String? regexp}) {
return config.getMultivar(configPointer.value, variable, regexp);
List<String> getMultivarValue(String variable, {String? regexp}) {
return config.getMultivarValue(configPointer.value, variable, regexp);
}
/// Sets the [value] of a multivar [variable] in the config file with the
@ -159,8 +159,8 @@ class Config {
///
/// The [regexp] is applied case-sensitively on the value.
/// Empty [regexp] sets [value] for all values of a multivar [variable]
void setMultivar(String variable, String regexp, String value) {
config.setMultivar(configPointer.value, variable, regexp, value);
void setMultivarValue(String variable, String regexp, String value) {
config.setMultivarValue(configPointer.value, variable, regexp, value);
}
/// Releases memory allocated for config object.