summary refs log tree commit diff
path: root/testFrontend/SafeNSound.Sdk
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-06-01 01:03:40 +0200
committerRory& <root@rory.gay>2025-06-01 01:03:40 +0200
commit99220d73469210f94493ef92a9edc64ab50eb0d9 (patch)
tree765781a300db5c1e1a15afaa8bd09f48712a5313 /testFrontend/SafeNSound.Sdk
parentInit test frontend (diff)
downloadnodejs-final-assignment-99220d73469210f94493ef92a9edc64ab50eb0d9.tar.xz
Add some tests
Diffstat (limited to 'testFrontend/SafeNSound.Sdk')
-rw-r--r--testFrontend/SafeNSound.Sdk/SafeNSound.Sdk.csproj8
-rw-r--r--testFrontend/SafeNSound.Sdk/SafeNSoundAuthentication.cs7
2 files changed, 11 insertions, 4 deletions
diff --git a/testFrontend/SafeNSound.Sdk/SafeNSound.Sdk.csproj b/testFrontend/SafeNSound.Sdk/SafeNSound.Sdk.csproj

index 7338078..1bf7de5 100644 --- a/testFrontend/SafeNSound.Sdk/SafeNSound.Sdk.csproj +++ b/testFrontend/SafeNSound.Sdk/SafeNSound.Sdk.csproj
@@ -8,9 +8,11 @@ </PropertyGroup> <ItemGroup> - <Folder Include="Clients\AdminClient\" /> - <Folder Include="Clients\MonitorClient\" /> - <Folder Include="Clients\UserClient\" /> + <Folder Include="Clients\" /> + </ItemGroup> + + <ItemGroup> + <ProjectReference Include="..\ArcaneLibs\ArcaneLibs\ArcaneLibs.csproj" /> </ItemGroup> </Project> diff --git a/testFrontend/SafeNSound.Sdk/SafeNSoundAuthentication.cs b/testFrontend/SafeNSound.Sdk/SafeNSoundAuthentication.cs
index 23c1445..7d88ec8 100644 --- a/testFrontend/SafeNSound.Sdk/SafeNSoundAuthentication.cs +++ b/testFrontend/SafeNSound.Sdk/SafeNSoundAuthentication.cs
@@ -1,6 +1,6 @@ namespace SafeNSound.Sdk; -public class SafeNSoundAuthentication(SafeNSoundConfiguration) +public class SafeNSoundAuthentication(SafeNSoundConfiguration config) { public async Task<SafeNSoundAuthResult> Login(string username, string password) { @@ -11,4 +11,9 @@ public class SafeNSoundAuthentication(SafeNSoundConfiguration) { } +} + +public class SafeNSoundAuthResult +{ + } \ No newline at end of file