feat(01-01): add xUnit test project with 7 stub test files
- SharepointToolbox.Tests targeting net10.0-windows with UseWPF=true - Moq 4.20.72 added for future mocking - 7 stub test files across Services, Auth, ViewModels, Localization, Integration - All tests marked [Fact(Skip)] referencing implementation plan — 0 failed, 7 skipped - Solution build: 0 errors, 0 warnings
This commit is contained in:
7
SharepointToolbox.Tests/Services/ProfileServiceTests.cs
Normal file
7
SharepointToolbox.Tests/Services/ProfileServiceTests.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace SharepointToolbox.Tests.Services;
|
||||
|
||||
public class ProfileServiceTests
|
||||
{
|
||||
[Fact(Skip = "Wave 0 stub — implemented in plan 01-03")]
|
||||
public void SaveAndLoad_RoundTrips_Profiles() { }
|
||||
}
|
||||
7
SharepointToolbox.Tests/Services/SettingsServiceTests.cs
Normal file
7
SharepointToolbox.Tests/Services/SettingsServiceTests.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace SharepointToolbox.Tests.Services;
|
||||
|
||||
public class SettingsServiceTests
|
||||
{
|
||||
[Fact(Skip = "Wave 0 stub — implemented in plan 01-03")]
|
||||
public void SaveAndLoad_RoundTrips_Settings() { }
|
||||
}
|
||||
Reference in New Issue
Block a user