6 increase message limit from 200 to 250 characters #7
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Configuration Enhancements:
.github/workflows/first-workflow.yml
: Added a new GitHub Actions workflow named "My First Workflow" with jobs for echoing steps and using thecowsays-action
.src/Application/src/RazorPagesTestSample/Properties/launchSettings.json
: Added launch settings for theRazorPagesTestSample
project.src/Application/tests/RazorPagesTestSample.Tests/Properties/launchSettings.json
: Added launch settings for theRazorPagesTestSample.Tests
project.src/Application/src/RazorPagesTestSample/RazorPagesTestSample.sln
: Added a new test project to the solution and updated the solution configuration. [1] [2]Dependency Updates:
src/Application/src/RazorPagesTestSample/RazorPagesTestSample.csproj
: UpdatedMicrosoft.EntityFrameworkCore
andMicrosoft.EntityFrameworkCore.InMemory
packages to version 8.0.8.src/Application/tests/RazorPagesTestSample.Tests/RazorPagesTestSample.Tests.csproj
: Updated multiple package dependencies includingMicrosoft.AspNetCore.TestHost
,Microsoft.EntityFrameworkCore
,Newtonsoft.Json
, andxunit
.New Tests:
src/Application/tests/RazorPagesTestSample.Tests/UnitTests/DataAccessLayerTest.cs
: Added a new test methodMessage_LengthValidation
to validate message length constraints and ensure proper error messages are generated.Minor Changes:
src/Application/src/RazorPagesTestSample/Data/Message.cs
: Increased the maximum allowed length for messages from 200 to 250 characters.src/Application/tests/RazorPagesTestSample.Tests/UnitTests/DataAccessLayerTest.cs
: Added a newusing
statement forSystem.ComponentModel.DataAnnotations
.