-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Introduce new method in IData for updating BinaryData without a HttpRequest as input. Old method marked as obsolete * Consolidate test classes and replace JwtTokenUtil with UserTokenProvider * Fix build errors * Add some more tests and fix nullability warnings
- Loading branch information
Showing
6 changed files
with
612 additions
and
208 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
src/Altinn.App.Core/Infrastructure/Clients/Storage/TestData/ExampleModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
namespace Altinn.App.Core.Infrastructure.Clients.Storage.TestData; | ||
|
||
/// <summary> | ||
/// Example Model used in tests | ||
/// </summary> | ||
public class ExampleModel | ||
{ | ||
/// <summary> | ||
/// The name | ||
/// </summary> | ||
public string Name { get; set; } = ""; | ||
/// <summary> | ||
/// The age | ||
/// </summary> | ||
public int Age { get; set; } = 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.