Added Configuration tests

This commit is contained in:
2025-05-30 20:55:41 +03:00
parent c3dd68576d
commit 062b0d0133
4 changed files with 290 additions and 1 deletions

View File

@@ -16,7 +16,7 @@ public abstract class ConfigurationBase : IConfiguration
this._Logger = logger;
}
public virtual void Add(string key, object value)
public virtual void Add(string key, object? value)
{
if (_InternalDictionary.ContainsKey(key))
return;