Skip to content

Commit

Permalink
initial logic for checking the concept of project source code scanning
Browse files Browse the repository at this point in the history
  • Loading branch information
dpvreony committed Jun 5, 2024
1 parent bf3efbf commit ab92ef7
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,15 @@ public ExecuteMethod(ITestOutputHelper output)
/// <inheritdoc />
protected override string GetProjectSourceCode()
{
return string.Empty;
return """
public sealed class MainWindow : MahApps.Metro.Controls.MetroWindow
{
public MainWindow()
{
InitializeComponent();
}
}
""";
}

/// <inheritdoc />
Expand Down

0 comments on commit ab92ef7

Please sign in to comment.