base API url handling only internal, closes #2
This commit is contained in:
parent
068af2bdbd
commit
443893eadf
@ -39,7 +39,7 @@ namespace dopt.DeltaBarth.Tests
|
|||||||
{
|
{
|
||||||
private const string absPath = @"A:\Arbeitsaufgaben\Delta-Barth\cs-wrapper\dopt.DeltaBarth";
|
private const string absPath = @"A:\Arbeitsaufgaben\Delta-Barth\cs-wrapper\dopt.DeltaBarth";
|
||||||
public TPlugin() : base(absPath) { }
|
public TPlugin() : base(absPath) { }
|
||||||
public new JsonStructs.Credentials GetCredentials()
|
public new DataObjects.Credentials GetCredentials()
|
||||||
{
|
{
|
||||||
return base.GetCredentials();
|
return base.GetCredentials();
|
||||||
}
|
}
|
||||||
@ -47,6 +47,10 @@ namespace dopt.DeltaBarth.Tests
|
|||||||
{
|
{
|
||||||
return base.GetBaseApiUrl();
|
return base.GetBaseApiUrl();
|
||||||
}
|
}
|
||||||
|
new public void SetzeBasisApiUrl(string basisApiUrl)
|
||||||
|
{
|
||||||
|
base.SetzeBasisApiUrl(basisApiUrl);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
[TestClass]
|
[TestClass]
|
||||||
public sealed class PluginTest
|
public sealed class PluginTest
|
||||||
|
|||||||
@ -22,7 +22,7 @@ namespace dopt.DeltaBarth
|
|||||||
SetzeBasisApiUrl(basisApiUrl);
|
SetzeBasisApiUrl(basisApiUrl);
|
||||||
SetzeNutzerdaten(nutzername, passwort, datenbank, mandant);
|
SetzeNutzerdaten(nutzername, passwort, datenbank, mandant);
|
||||||
}
|
}
|
||||||
public void SetzeBasisApiUrl(string basisApiUrl)
|
protected void SetzeBasisApiUrl(string basisApiUrl)
|
||||||
{
|
{
|
||||||
AssertNotDisposed();
|
AssertNotDisposed();
|
||||||
pyModManagement.set_base_url(basisApiUrl);
|
pyModManagement.set_base_url(basisApiUrl);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user