aboutsummaryrefslogtreecommitdiff
path: root/tests/Jellyfin.Controller.Tests
AgeCommit message (Collapse)Author
2021-01-11Bump coverlet.collector from 1.3.0 to 3.0.0dependabot[bot]
Bumps [coverlet.collector](https://github.com/coverlet-coverage/coverlet) from 1.3.0 to 3.0.0. - [Release notes](https://github.com/coverlet-coverage/coverlet/releases) - [Commits](https://github.com/coverlet-coverage/coverlet/commits/v3.0.0) Signed-off-by: dependabot[bot] <support@github.com>
2021-01-03Fix string culture specificityobradovichv
Fix bug in SsaParser.cs primary color {\1c} formatting that would leave behind the {\1c} closing token and instead append </font> token unconditionally to the dialogue text. Add tests. Change AlphanumComparatorTests.cs complementary test data generation from an array shuffle to an array reversal. Although it was previously using a seeded Random, the shuffle itself could result in no rearrangement of elements if the seed or test data changed over time. The reversal guarantees reordering of elements and has the added benefit of simplifying the test code since no special handling is needed for arrays of 2 elements. Change DailyTrigger.cs logging of TriggerDate format to "yyyy-MM-dd HH:mm:ss.fff zzz" for consistency with configured log timestamp format and change DueTime format to culture-invariant "c" format.
2020-12-10Bump Microsoft.NET.Test.Sdk from 16.8.0 to 16.8.3dependabot[bot]
Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 16.8.0 to 16.8.3. - [Release notes](https://github.com/microsoft/vstest/releases) - [Commits](https://github.com/microsoft/vstest/compare/v16.8.0...v16.8.3) Signed-off-by: dependabot[bot] <support@github.com>
2020-11-10Update packages to net5crobibero
2020-11-09Bump Microsoft.NET.Test.Sdk from 16.7.1 to 16.8.0dependabot[bot]
Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 16.7.1 to 16.8.0. - [Release notes](https://github.com/microsoft/vstest/releases) - [Commits](https://github.com/microsoft/vstest/compare/v16.7.1...v16.8.0) Signed-off-by: dependabot[bot] <support@github.com>
2020-08-31Bump Microsoft.NET.Test.Sdk and add missing referencecrobibero
2020-08-12bump depscrobibero
2020-08-10Bump Microsoft.NET.Test.Sdk from 16.6.1 to 16.7.0dependabot[bot]
Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 16.6.1 to 16.7.0. - [Release notes](https://github.com/microsoft/vstest/releases) - [Commits](https://github.com/microsoft/vstest/compare/v16.6.1...v16.7.0) Signed-off-by: dependabot[bot] <support@github.com>
2020-06-15Bump coverlet.collector from 1.2.1 to 1.3.0dependabot[bot]
Bumps [coverlet.collector](https://github.com/coverlet-coverage/coverlet) from 1.2.1 to 1.3.0. - [Release notes](https://github.com/coverlet-coverage/coverlet/releases) - [Commits](https://github.com/coverlet-coverage/coverlet/commits) Signed-off-by: dependabot[bot] <support@github.com>
2020-06-13enable code analyzers for teststelans
2020-06-11Bump Microsoft.NET.Test.Sdk from 16.5.0 to 16.6.1dependabot[bot]
Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 16.5.0 to 16.6.1. - [Release notes](https://github.com/microsoft/vstest/releases) - [Commits](https://github.com/microsoft/vstest/compare/v16.5.0...v16.6.1) Signed-off-by: dependabot[bot] <support@github.com>
2020-04-21Add <ProjectGuid> properties to all project filesMark Monteiro
This is required for SonarCloud analysis to run
2020-04-03Bump coverlet.collector from 1.2.0 to 1.2.1dependabot-preview[bot]
Bumps [coverlet.collector](https://github.com/tonerdo/coverlet) from 1.2.0 to 1.2.1. - [Release notes](https://github.com/tonerdo/coverlet/releases) - [Commits](https://github.com/tonerdo/coverlet/commits) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-03-26Bump Microsoft.NET.Test.Sdk from 16.4.0 to 16.5.0dependabot-preview[bot]
Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 16.4.0 to 16.5.0. - [Release notes](https://github.com/microsoft/vstest/releases) - [Commits](https://github.com/microsoft/vstest/compare/v16.4.0...v16.5.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-03-05Update AlphanumComparatorTests.csBond-009
2020-03-05Add tests for alpha numeric sortingBond_009