Skip to content

Commit

Permalink
WiFi credentials file for unit tests is now added through a template (#…
Browse files Browse the repository at this point in the history
…270)

***NO_CI***
  • Loading branch information
josesimoes authored Oct 7, 2024
1 parent 03d59f2 commit d6a9d90
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/WebServerE2ETests/Template/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
!WiFi.cs
6 changes: 6 additions & 0 deletions tests/WebServerE2ETests/WebServerE2ETests.nfproj
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,10 @@
<ProjectConfigurationsDeclaredAsItems />
</ProjectCapabilities>
</ProjectExtensions>
<Target Name="CopyWiFiTemplate" Condition="!Exists('$(MSBuildProjectDirectory)\WiFi.cs')" BeforeTargets="BeforeBuild">
<ItemGroup>
<WIFI_TEMPLATE Include="$(MSBuildProjectDirectory)\Template\WiFi.cs"/>
</ItemGroup>
<Copy SourceFiles="@(WIFI_TEMPLATE)" DestinationFolder="$(MSBuildProjectDirectory)" />
</Target>
</Project>
12 changes: 12 additions & 0 deletions tests/WebServerE2ETests/WiFi.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

namespace WebServerE2ETests
{
public partial class Program
{
private const string Ssid = "yourSSID";
private const string Password = "YourPassword";

}
}

0 comments on commit d6a9d90

Please sign in to comment.