From 708a522737eb8816d03229328e0456be412acddc Mon Sep 17 00:00:00 2001 From: NETTOUR Marwan Date: Tue, 5 May 2026 09:48:58 -0400 Subject: [PATCH 1/3] Update NuGet packages --- src/ByteSync.Client/ByteSync.Client.csproj | 56 +++++++++---------- .../UsageStatisticsViewModel.cs | 38 +++++-------- src/ByteSync.Common/ByteSync.Common.csproj | 6 +- .../ByteSync.Functions.csproj | 25 +++++---- .../TelemetryAndLoggingMiddleware.cs | 4 +- .../ByteSync.ServerCommon.csproj | 20 +++---- .../ByteSync.Client.IntegrationTests.csproj | 26 ++++----- .../ByteSync.Client.UnitTests.csproj | 14 ++--- .../ByteSync.Common.Tests.csproj | 10 ++-- ...ByteSync.Functions.IntegrationTests.csproj | 26 ++++----- .../ByteSync.Functions.UnitTests.csproj | 20 +++---- .../ByteSync.ServerCommon.Tests.csproj | 22 ++++---- .../ByteSync.TestsCommon.csproj | 6 +- 13 files changed, 131 insertions(+), 142 deletions(-) diff --git a/src/ByteSync.Client/ByteSync.Client.csproj b/src/ByteSync.Client/ByteSync.Client.csproj index f574ba42b..1d1a165cc 100644 --- a/src/ByteSync.Client/ByteSync.Client.csproj +++ b/src/ByteSync.Client/ByteSync.Client.csproj @@ -51,52 +51,52 @@ - - - - - - + + + + + + - - + + - - - - - - - - - - + + + + + + + + + + - + all runtime; build; native; contentfiles; analyzers; buildtransitive - + - - - - - - - + + + + + + + - + diff --git a/src/ByteSync.Client/ViewModels/AccountDetails/UsageStatisticsViewModel.cs b/src/ByteSync.Client/ViewModels/AccountDetails/UsageStatisticsViewModel.cs index 9c8561b24..3fcc4e54d 100644 --- a/src/ByteSync.Client/ViewModels/AccountDetails/UsageStatisticsViewModel.cs +++ b/src/ByteSync.Client/ViewModels/AccountDetails/UsageStatisticsViewModel.cs @@ -305,7 +305,7 @@ private ColumnSeries BuildCurrentPeriodSerie() var mainColumnSerie = new ColumnSeries { Values = BuildValues(UsageStatisticsData.CurrentPeriodData), - TooltipLabelFormatter = BuildToolTipLabel, + YToolTipLabelFormatter = BuildToolTipLabel, Fill = new SolidColorPaint(new SKColor(chartsMainBarColor.R, chartsMainBarColor.G, chartsMainBarColor.B)), Mapping = BuildMapping }; @@ -331,7 +331,7 @@ private ISeries BuildPreviousPeriodSerie() var lineSeries = new LineSeries { Values = BuildValues(UsageStatisticsData.PreviousPeriodData), - TooltipLabelFormatter = BuildToolTipLabel, + YToolTipLabelFormatter = BuildToolTipLabel, Stroke = new SolidColorPaint(new SKColor(chartsMainLineColor.R, chartsMainLineColor.G, chartsMainLineColor.B), 3), GeometrySize = 0, GeometryStroke = null, @@ -358,20 +358,19 @@ private List BuildValues(UsageStatisticsPeriod usageStatistics return values; } - private string BuildToolTipLabel(ChartPoint, LabelGeometry> chartPoint) + private string BuildToolTipLabel(ChartPoint chartPoint) { - return DoBuildToolTipLabel(chartPoint.Context, chartPoint.Model!, PreviousYear); + return DoBuildToolTipLabel(chartPoint.Index, chartPoint.Model!, PreviousYear); } private string BuildToolTipLabel(ChartPoint chartPoint) { - return DoBuildToolTipLabel(chartPoint.Context, chartPoint.Model!, Year); + return DoBuildToolTipLabel(chartPoint.Index, chartPoint.Model!, Year); } - private string DoBuildToolTipLabel(ChartPointContext context, LogarithmicPoint model, int year) + private string DoBuildToolTipLabel(int pointIndex, LogarithmicPoint model, int year) { - // Exemple : "Janvier 2023 - 520 987 o (507,29 Ko) - var monthName = _localizationService.GetMonthName(context.Entity.EntityIndex); + var monthName = _localizationService.GetMonthName(pointIndex); var result = $"{string.Format(Resources.General_MonthYearColon, monthName, year)} "; if (model.Volume > 1024) @@ -390,24 +389,13 @@ private string DoBuildToolTipLabel(ChartPointContext context, LogarithmicPoint m return result; } - private void BuildMapping(LogarithmicPoint logPoint, ChartPoint chartPoint) + private Coordinate BuildMapping(LogarithmicPoint logPoint, int index) { - // Le mapping permet d'adapter la valeur quand le mode progressif est utilisé - - // https://lvcharts.com/docs/Avalonia/2.0.0-beta.700/samples.axes.logarithmic + var volume = UseProgressiveScale + ? Math.Pow(logPoint.Volume, PROGRESSIVE_MODE_POWER_BASE) + : logPoint.Volume; - // for the x coordinate, we use the X property of the LogaritmicPoint instance - chartPoint.SecondaryValue = logPoint.X; - - // but for the Y coordinate, we will map to the logarithm of the value - if (UseProgressiveScale) - { - chartPoint.PrimaryValue = Math.Pow(logPoint.Volume, PROGRESSIVE_MODE_POWER_BASE); - } - else - { - chartPoint.PrimaryValue = logPoint.Volume; - } + return new Coordinate(logPoint.X, volume); } private class LogarithmicPoint @@ -453,4 +441,4 @@ private long GetMaxValue() return maxValue; } -} \ No newline at end of file +} diff --git a/src/ByteSync.Common/ByteSync.Common.csproj b/src/ByteSync.Common/ByteSync.Common.csproj index a5580590e..23a57d3b7 100644 --- a/src/ByteSync.Common/ByteSync.Common.csproj +++ b/src/ByteSync.Common/ByteSync.Common.csproj @@ -14,9 +14,9 @@ - - - + + + diff --git a/src/ByteSync.Functions/ByteSync.Functions.csproj b/src/ByteSync.Functions/ByteSync.Functions.csproj index c27ab3ce4..1b242d5b6 100644 --- a/src/ByteSync.Functions/ByteSync.Functions.csproj +++ b/src/ByteSync.Functions/ByteSync.Functions.csproj @@ -8,26 +8,27 @@ fad123b6-a5bb-4773-8a56-3af68f41292c - - - - - - + + + + + + - + - + - - - + + + + - + diff --git a/src/ByteSync.Functions/Helpers/Middlewares/TelemetryAndLoggingMiddleware.cs b/src/ByteSync.Functions/Helpers/Middlewares/TelemetryAndLoggingMiddleware.cs index 5f4057c60..29361262d 100644 --- a/src/ByteSync.Functions/Helpers/Middlewares/TelemetryAndLoggingMiddleware.cs +++ b/src/ByteSync.Functions/Helpers/Middlewares/TelemetryAndLoggingMiddleware.cs @@ -23,7 +23,7 @@ public async Task Invoke(FunctionContext context, FunctionExecutionDelegate next var scopeProperties = new Dictionary { - ["OperationId"] = operation.Telemetry.Context.Operation.Id, + ["OperationId"] = operation.Telemetry.Id, ["FunctionName"] = context.FunctionDefinition.Name }; @@ -42,4 +42,4 @@ public async Task Invoke(FunctionContext context, FunctionExecutionDelegate next await next(context); } } -} \ No newline at end of file +} diff --git a/src/ByteSync.ServerCommon/ByteSync.ServerCommon.csproj b/src/ByteSync.ServerCommon/ByteSync.ServerCommon.csproj index 6447772ca..682ee919f 100644 --- a/src/ByteSync.ServerCommon/ByteSync.ServerCommon.csproj +++ b/src/ByteSync.ServerCommon/ByteSync.ServerCommon.csproj @@ -8,20 +8,20 @@ - - + + - - + + - - - - - + + + + + - + diff --git a/tests/ByteSync.Client.IntegrationTests/ByteSync.Client.IntegrationTests.csproj b/tests/ByteSync.Client.IntegrationTests/ByteSync.Client.IntegrationTests.csproj index f1819ff88..da95f6692 100644 --- a/tests/ByteSync.Client.IntegrationTests/ByteSync.Client.IntegrationTests.csproj +++ b/tests/ByteSync.Client.IntegrationTests/ByteSync.Client.IntegrationTests.csproj @@ -10,26 +10,26 @@ - - - + + + all runtime; build; native; contentfiles; analyzers; buildtransitive - - - - - + + + + + - - + + all runtime; build; native; contentfiles; analyzers; buildtransitive - - - + + + diff --git a/tests/ByteSync.Client.UnitTests/ByteSync.Client.UnitTests.csproj b/tests/ByteSync.Client.UnitTests/ByteSync.Client.UnitTests.csproj index be495552b..781b9c8cf 100644 --- a/tests/ByteSync.Client.UnitTests/ByteSync.Client.UnitTests.csproj +++ b/tests/ByteSync.Client.UnitTests/ByteSync.Client.UnitTests.csproj @@ -11,17 +11,17 @@ - - - + + + - - - + + + all runtime; build; native; contentfiles; analyzers; buildtransitive - + diff --git a/tests/ByteSync.Common.Tests/ByteSync.Common.Tests.csproj b/tests/ByteSync.Common.Tests/ByteSync.Common.Tests.csproj index d96520db5..d4f1a4148 100644 --- a/tests/ByteSync.Common.Tests/ByteSync.Common.Tests.csproj +++ b/tests/ByteSync.Common.Tests/ByteSync.Common.Tests.csproj @@ -8,12 +8,12 @@ - - + + - - - + + + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/tests/ByteSync.Functions.IntegrationTests/ByteSync.Functions.IntegrationTests.csproj b/tests/ByteSync.Functions.IntegrationTests/ByteSync.Functions.IntegrationTests.csproj index 82ba9441c..765adb429 100644 --- a/tests/ByteSync.Functions.IntegrationTests/ByteSync.Functions.IntegrationTests.csproj +++ b/tests/ByteSync.Functions.IntegrationTests/ByteSync.Functions.IntegrationTests.csproj @@ -11,25 +11,25 @@ - - - - - - - - - - - + + + + + + + + + + + all runtime; build; native; contentfiles; analyzers; buildtransitive - + all runtime; build; native; contentfiles; analyzers; buildtransitive - + diff --git a/tests/ByteSync.Functions.UnitTests/ByteSync.Functions.UnitTests.csproj b/tests/ByteSync.Functions.UnitTests/ByteSync.Functions.UnitTests.csproj index 5b87c7c05..2065de64d 100644 --- a/tests/ByteSync.Functions.UnitTests/ByteSync.Functions.UnitTests.csproj +++ b/tests/ByteSync.Functions.UnitTests/ByteSync.Functions.UnitTests.csproj @@ -10,22 +10,22 @@ - - + + - - - - + + + + - - - + + + all runtime; build; native; contentfiles; analyzers; buildtransitive - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/tests/ByteSync.ServerCommon.Tests/ByteSync.ServerCommon.Tests.csproj b/tests/ByteSync.ServerCommon.Tests/ByteSync.ServerCommon.Tests.csproj index ee04b8fd8..f0021babe 100644 --- a/tests/ByteSync.ServerCommon.Tests/ByteSync.ServerCommon.Tests.csproj +++ b/tests/ByteSync.ServerCommon.Tests/ByteSync.ServerCommon.Tests.csproj @@ -11,21 +11,21 @@ - - - - + + + + - - - - - - + + + + + + all runtime; build; native; contentfiles; analyzers; buildtransitive - + all runtime; build; native; contentfiles; analyzers; buildtransitive diff --git a/tests/ByteSync.TestsCommon/ByteSync.TestsCommon.csproj b/tests/ByteSync.TestsCommon/ByteSync.TestsCommon.csproj index b368595d0..9e5b8d86e 100644 --- a/tests/ByteSync.TestsCommon/ByteSync.TestsCommon.csproj +++ b/tests/ByteSync.TestsCommon/ByteSync.TestsCommon.csproj @@ -11,10 +11,10 @@ - - + + - + From 90e0ba4c983714909de8fadd746e7b20d345da6b Mon Sep 17 00:00:00 2001 From: NETTOUR Marwan Date: Tue, 5 May 2026 10:09:23 -0400 Subject: [PATCH 2/3] Fix Application Insights compatibility --- src/ByteSync.Functions/ByteSync.Functions.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ByteSync.Functions/ByteSync.Functions.csproj b/src/ByteSync.Functions/ByteSync.Functions.csproj index 1b242d5b6..edd887a56 100644 --- a/src/ByteSync.Functions/ByteSync.Functions.csproj +++ b/src/ByteSync.Functions/ByteSync.Functions.csproj @@ -12,7 +12,7 @@ - + From e475883718593c8a126d16b86285e63357d05462 Mon Sep 17 00:00:00 2001 From: NETTOUR Marwan Date: Thu, 7 May 2026 05:09:31 -0400 Subject: [PATCH 3/3] refactor: replace FluentAssertions with AwesomeAssertions --- .../Business/Filtering/TestFiltering.cs | 2 +- .../Business/Filtering/TestFiltering_Actions.cs | 2 +- .../Business/Filtering/TestFiltering_Contents.cs | 2 +- .../Business/Filtering/TestFiltering_ContentsAndDate.cs | 2 +- .../Business/Filtering/TestFiltering_DataSources.cs | 2 +- .../Business/Filtering/TestFiltering_DocumentationExamples.cs | 2 +- .../Business/Filtering/TestFiltering_Existence.cs | 2 +- .../Business/Filtering/TestFiltering_FileSystemType.cs | 2 +- .../Business/Filtering/TestFiltering_Has.cs | 2 +- .../Business/Filtering/TestFiltering_LastWriteTime.cs | 2 +- .../Business/Filtering/TestFiltering_Name.cs | 2 +- .../Business/Filtering/TestFiltering_Only.cs | 2 +- .../Business/Filtering/TestFiltering_Path.cs | 2 +- .../Business/Filtering/TestFiltering_Size.cs | 2 +- .../Business/Filtering/TestFiltering_TextSearch.cs | 2 +- .../ByteSync.Client.IntegrationTests.csproj | 2 +- .../Factories/TestInventoryBuilderFactory.cs | 2 +- .../Models/Comparisons/TestInventoryComparer.cs | 2 +- .../SessionConnection/ProtocolVersion_IntegrationTests.cs | 2 +- .../Services/Actions/TestSharedAtomicActionComputer.cs | 2 +- .../Services/Applications/EnvironmentService_Tests.cs | 2 +- .../Services/Communications/TestConnectionService.cs | 2 +- .../Services/Communications/Transfers/TestSlicerEncrypter.cs | 2 +- .../Transfers/Upload_SliceAndParallelism_Tests.cs | 2 +- .../Services/Comparisons/TargetInaccessible_IntegrationTests.cs | 2 +- .../Services/Comparisons/TestAtomicActionConsistencyChecker.cs | 2 +- .../Inventories/FullInventoryRunner_IntegrationTests.cs | 2 +- .../InventoryBuilderAccessHandling_IntegrationTests.cs | 2 +- .../Inventories/InventoryCompleteness_IntegrationTests.cs | 2 +- .../Services/Inventories/TestDataNodeService.cs | 2 +- .../Services/Inventories/TestDataSourceService.cs | 2 +- .../Services/Inventories/TestInventoryBuilder.cs | 2 +- .../Synchronizations/TestSynchronizationActionHandler.cs | 2 +- .../Services/Updates/TestDeleteUpdateBackupSnippetsService.cs | 2 +- .../Services/Updates/TestUpdateExistingFilesBackuper.cs | 2 +- .../ViewModels/Misc/FlyoutContainerViewModel_HeadlessTests.cs | 2 +- .../TrustedNetworks/AddTrustedClientViewModel_HeadlessTests.cs | 2 +- .../Views/MainWindow_HeadlessTests.cs | 2 +- .../Business/Communications/TestDownloadPartsInfo.cs | 2 +- .../Business/Communications/Transfers/FileUploaderSliceTests.cs | 2 +- .../Communications/Transfers/UploadProgressStateTests.cs | 2 +- .../Business/Configurations/ApplicationSettingsTests.cs | 2 +- .../Business/Filtering/IdentifiersTest.cs | 2 +- .../Business/Filtering/PropertyComparerTests.cs | 2 +- .../Filtering/PropertyComparisonExpressionEvaluatorTests.cs | 2 +- .../Inventories/InventoryGlobalStatusAggregatorTests.cs | 2 +- .../Business/Inventories/InventoryMonitorDataTests.cs | 2 +- .../Business/Inventories/InventoryProcessDataTests.cs | 2 +- .../Business/Sessions/MatchingModesTests.cs | 2 +- .../Business/Shared/SharedDataPartTests.cs | 2 +- .../ByteSync.Client.UnitTests/ByteSync.Client.UnitTests.csproj | 2 +- .../ByteSync.Client.UnitTests/Common/UploadFileResponseTests.cs | 2 +- .../Factories/ViewModels/MatchingModeViewModelFactoryTests.cs | 2 +- tests/ByteSync.Client.UnitTests/Helpers/ColorUtilsTests.cs | 2 +- tests/ByteSync.Client.UnitTests/Helpers/ProtectedPathsTests.cs | 2 +- tests/ByteSync.Client.UnitTests/Helpers/ReactiveUtilsTests.cs | 2 +- .../Helpers/ReactiveViewModelTestHelpers.cs | 2 +- .../Models/Comparisons/ContentIdentityAccessTests.cs | 2 +- .../Models/Inventories/InventoryPartSkippedCountsTests.cs | 2 +- .../Models/Inventories/SkippedEntryTests.cs | 2 +- .../Services/Actions/SharedActionsGroupOrganizer_UnitTests.cs | 2 +- .../Services/Applications/MsixPfnParserTests.cs | 2 +- .../Communications/Api/ApiResponseContentHelperTests.cs | 2 +- .../Communications/Api/SynchronizationApiClientTests.cs | 2 +- .../Services/Communications/Api/TrustApiClientTests.cs | 2 +- .../Services/Communications/ConnectionServiceTests.cs | 2 +- .../Services/Communications/PublicKeysManagerTests.cs | 2 +- .../Services/Communications/PublicKeysTrusterTests.cs | 2 +- .../Services/Communications/SearchUpdateServiceTests.cs | 2 +- .../Services/Communications/TestSafetyWordsComputer.cs | 2 +- .../AfterTransferSynchronizationSharedFileTests.cs | 2 +- .../Transfers/Downloading/DownloadPartsCoordinatorTests.cs | 2 +- .../Transfers/Downloading/DownloadTargetBuilderTests.cs | 2 +- .../Communications/Transfers/Downloading/ErrorManagerTests.cs | 2 +- .../Transfers/Downloading/FileDownloaderCacheTests.cs | 2 +- .../Transfers/Downloading/FileDownloaderFactoryTests.cs | 2 +- .../Communications/Transfers/Downloading/FileMergerTests.cs | 2 +- .../Transfers/Downloading/PostDownloadHandlerProxyTests.cs | 2 +- .../Transfers/Downloading/ResourceManagerTests.cs | 2 +- .../Downloading/SynchronizationDownloadFinalizerTests.cs | 2 +- .../Transfers/Strategies/CloudflareR2UploadStrategyTests.cs | 2 +- .../Transfers/Strategies/UploadFailureClassifierTests.cs | 2 +- .../Transfers/Uploading/AdaptiveUploadControllerTests.cs | 2 +- .../Transfers/Uploading/FileSlicerMetricsTests.cs | 2 +- .../Communications/Transfers/Uploading/FileSlicerTests.cs | 2 +- .../Transfers/Uploading/FileUploadCoordinatorTests.cs | 2 +- .../Transfers/Uploading/FileUploadPreparerTests.cs | 2 +- .../Transfers/Uploading/FileUploadProcessorFactoryTests.cs | 2 +- .../Transfers/Uploading/FileUploadProcessorTests.cs | 2 +- .../Transfers/Uploading/FileUploadWorkerMetricsTests.cs | 2 +- .../Communications/Transfers/Uploading/FileUploadWorkerTests.cs | 2 +- .../Communications/Transfers/Uploading/FileUploaderTests.cs | 2 +- .../Transfers/Uploading/UploadAttemptTimeoutPolicyTests.cs | 2 +- .../Transfers/Uploading/UploadParallelismManagerTests.cs | 2 +- .../Transfers/Uploading/UploadProgressMonitorTests.cs | 2 +- .../Comparisons/AtomicActionConsistencyCheckerAccessTests.cs | 2 +- .../Comparisons/ContentRepartitionGroupsComputerFactoryTests.cs | 2 +- .../Services/Comparisons/IdentityBuilderTests.cs | 2 +- .../Services/Comparisons/InitialStatusBuilderTests.cs | 2 +- .../Comparisons/InventoryComparerIncompletePartsFlatTests.cs | 2 +- .../Comparisons/InventoryComparerPropagateAccessIssuesTests.cs | 2 +- .../SynchronizationRuleMatcherConditionsMatchTests.cs | 2 +- .../Comparisons/SynchronizationRuleMatcherContentTests.cs | 2 +- .../Services/Comparisons/SynchronizationRuleMatcherDateTests.cs | 2 +- .../Comparisons/SynchronizationRuleMatcherLocalizeTests.cs | 2 +- .../Services/Comparisons/SynchronizationRuleMatcherNameTests.cs | 2 +- .../SynchronizationRuleMatcherPresenceExtendedTests.cs | 2 +- .../Comparisons/SynchronizationRuleMatcherPresenceTests.cs | 2 +- .../Services/Comparisons/SynchronizationRuleMatcherSizeTests.cs | 2 +- .../Services/Configurations/LocalApplicationDataManagerTests.cs | 2 +- .../Services/Converters/BooleanConverterTests.cs | 2 +- .../Services/Converters/DeploymentModeToStringConverterTests.cs | 2 +- .../Services/Converters/IntToLetterConverterTests.cs | 2 +- .../Converters/ItemCountToLocalizedTextConverterTests.cs | 2 +- .../Services/Encryptions/TestDataEncrypter.cs | 2 +- .../Services/Inventories/DataInventoryRunnerTests.cs | 2 +- .../Services/Inventories/DataNodeCodeGeneratorTests.cs | 2 +- .../Services/Inventories/DataNodeServiceTests.cs | 2 +- .../Services/Inventories/DataSourceCheckerTests.cs | 2 +- .../Services/Inventories/DataSourceCodeGeneratorTests.cs | 2 +- .../Services/Inventories/DataSourceServiceTests.cs | 2 +- .../Services/Inventories/FileSystemInspectorTests.cs | 2 +- .../Services/Inventories/InventoryBuilderInspectorTests.cs | 2 +- .../Services/Inventories/InventoryBuilderPublicTests.cs | 2 +- .../Services/Inventories/InventoryFinishedServiceTests.cs | 2 +- .../Services/Inventories/InventoryLoaderIncompleteFlagTests.cs | 2 +- .../Services/Inventories/InventoryServiceTests.cs | 2 +- .../Services/Inventories/InventoryStatisticsServiceTests.cs | 2 +- .../Services/Inventories/NoiseFileDetectorTests.cs | 2 +- .../Services/Inventories/PosixFileTypeClassifierTests.cs | 2 +- .../Services/Misc/Factories/PolicyFactoryTests.cs | 2 +- .../Services/Ratings/RatingPromptConfigurationProviderTests.cs | 2 +- .../Services/Ratings/RatingPromptServiceTests.cs | 2 +- .../Services/Repositories/SessionMembersRepositoryTests.cs | 2 +- .../Services/Sessions/Connecting/CreateSessionServiceTests.cs | 2 +- .../Services/Sessions/DataPartIndexerTests.cs | 2 +- .../Services/Sessions/SynchronizationServiceTests.cs | 2 +- .../Services/Synchronizations/DeltaByteShiftToleranceTests.cs | 2 +- .../SynchronizationActionServerInformerTests.cs | 2 +- .../Synchronizations/SynchronizationRulesServiceTests.cs | 2 +- .../Services/Themes/ThemeBuilderTests.cs | 2 +- .../TimeTracking/SynchronizationDataTrackingStrategyTests.cs | 2 +- .../Services/TimeTracking/TimeTrackingComputerTests.cs | 2 +- tests/ByteSync.Client.UnitTests/TestUtilities/Mine/TestRsa.cs | 2 +- .../Uploading/AdaptiveUploadControllerTests.cs | 2 +- .../ViewModels/Announcements/AnnouncementViewModelTests.cs | 2 +- .../ViewModels/Headers/HeaderViewModelTests.cs | 2 +- .../ViewModels/Headers/UpdateDetailsViewModelTests.cs | 2 +- .../ViewModels/Misc/FlyoutContainerViewModelTests.cs | 2 +- .../Comparisons/Actions/AtomicActionEditViewModelTests.cs | 2 +- .../Actions/SynchronizationRuleGlobalViewModelTests.cs | 2 +- .../Comparisons/Actions/TargetedActionGlobalViewModelTests.cs | 2 +- .../Comparisons/Results/ComparisonResultViewModelTests.cs | 2 +- .../Comparisons/Results/ContentIdentityViewModelTests.cs | 2 +- .../Results/ContentRepartitionViewModelLetteringTests.cs | 2 +- .../Comparisons/Results/Misc/ComparisonItemViewModelTests.cs | 2 +- .../Results/SynchronizationRuleSummaryViewModelTests.cs | 2 +- .../Sessions/DataNodes/DataNodeHeaderViewModelTests.cs | 2 +- .../Sessions/DataNodes/DataNodeSourcesViewModelTests.cs | 2 +- .../ViewModels/Sessions/DataNodes/DataNodeViewModelTests.cs | 2 +- .../Inventories/InventoryDeltaGenerationViewModelTests.cs | 2 +- .../Sessions/Inventories/InventoryGlobalStatusViewModelTests.cs | 2 +- .../Inventories/InventoryLocalIdentificationViewModelTests.cs | 2 +- .../Sessions/Inventories/InventoryLocalStatusViewModelTests.cs | 2 +- .../Sessions/Inventories/InventoryMainViewModelTests.cs | 2 +- .../Sessions/Managing/SessionSettingsEditViewModelTests.cs | 2 +- .../SynchronizationBeforeStartViewModelTests.cs | 2 +- .../SynchronizationConfirmationViewModelTests.cs | 2 +- .../Synchronizations/SynchronizationMainStatusViewModelTests.cs | 2 +- .../Synchronizations/SynchronizationStatisticsViewModelTests.cs | 2 +- .../TrustedNetworks/AddTrustedClientViewModelTests.cs | 2 +- .../Business/EndPoints/PublicKeyCheckDataTests.cs | 2 +- .../Business/Versions/ProtocolVersionTests.cs | 2 +- tests/ByteSync.Common.Tests/ByteSync.Common.Tests.csproj | 2 +- tests/ByteSync.Common.Tests/Helpers/DebugUtilsTests.cs | 2 +- tests/ByteSync.Common.Tests/Helpers/RandomUtilsTests.cs | 2 +- .../ByteSync.Functions.IntegrationTests.csproj | 2 +- .../End2End/E2E_Auth_Session_Tests.cs | 2 +- .../End2End/E2E_Environment_Setup.cs | 2 +- .../Integration/Services/AzureBlobStorageService_Tests.cs | 2 +- .../Integration/Services/CloudflareR2Service_Tests.cs | 2 +- .../ByteSync.Functions.UnitTests.csproj | 2 +- .../Helpers/Middlewares/JwtMiddlewareTests.cs | 2 +- .../Helpers/Misc/IpAddressExtractorTests.cs | 2 +- .../Http/AnnouncementFunctionTests.cs | 2 +- tests/ByteSync.Functions.UnitTests/Http/AuthFunctionTests.cs | 2 +- .../Http/CloudSessionFunctionTests.cs | 2 +- .../Http/CloudSessionProfileFunctionTests.cs | 2 +- .../Http/FileTransferFunctionTests.cs | 2 +- .../ByteSync.Functions.UnitTests/Http/InventoryFunctionTests.cs | 2 +- .../Http/SynchronizationFunctionTests.cs | 2 +- tests/ByteSync.Functions.UnitTests/Http/TrustFunctionTests.cs | 2 +- .../Business/CloudSessionDataTests.cs | 2 +- .../Business/SessionMemberDataTests.cs | 2 +- .../ByteSync.ServerCommon.Tests.csproj | 2 +- .../Announcements/GetActiveAnnouncementsCommandHandlerTests.cs | 2 +- .../Commands/Authentication/AuthenticateCommandHandlerTests.cs | 2 +- .../Commands/Authentication/RefreshTokensCommandHandlerTests.cs | 2 +- .../Commands/CloudSessions/CreateSessionCommandHandlerTests.cs | 2 +- .../FinalizeJoinCloudSessionCommandHandlerTests.cs | 2 +- .../Commands/CloudSessions/QuitSessionCommandHandlerTests.cs | 2 +- .../CloudSessions/UpdateSessionSettingsCommandHandlerTests.cs | 2 +- .../AssertDownloadIsFinishedCommandHandlerTests.cs | 2 +- .../AssertFilePartIsDownloadedCommandHandlerTests.cs | 2 +- .../AssertFilePartIsUploadedCommandHandlerTests.cs | 2 +- .../FileTransfers/AssertUploadIsFinishedCommandHandlerTests.cs | 2 +- .../GetDownloadFileStorageLocationCommandHandlerTests.cs | 2 +- .../FileTransfers/GetDownloadFileUrlCommandHandlerTests.cs | 2 +- .../GetUploadFileStorageLocationCommandHandlerTests.cs | 2 +- .../FileTransfers/GetUploadFileUrlCommandHandlerTests.cs | 2 +- .../Commands/Inventories/AddDataNodeCommandHandlerTests.cs | 2 +- .../Commands/Inventories/AddDataSourceCommandHandlerTests.cs | 2 +- .../Commands/Inventories/GetPathItemsCommandHandlerTests.cs | 2 +- .../Commands/Inventories/RemoveDataNodeCommandHandlerTests.cs | 2 +- .../Commands/Inventories/RemoveDataSourceCommandHandlerTests.cs | 2 +- .../Commands/Inventories/StartInventoryCommandHandlerTests.cs | 2 +- .../SessionMembers/SetGeneralStatusCommandHandlerTests.cs | 2 +- .../Synchronizations/DateIsCopiedCommandHandlerTests.cs | 2 +- .../Synchronizations/DirectoryIsCreatedCommandHandlerTests.cs | 2 +- .../FileOrDirectoryIsDeletedCommandHandlerTests.cs | 2 +- .../Synchronizations/LocalCopyIsDoneCommandHandlerTests.cs | 2 +- .../Synchronizations/MemberHasFinishedCommandHandlerTests.cs | 2 +- .../RequestSynchronizationAbortCommandHandlerTests.cs | 2 +- .../Synchronizations/StartSynchronizationCommandHandlerTests.cs | 2 +- .../SynchronizationErrorsCommandHandlerTests.cs | 2 +- .../Trusts/GiveMemberPublicKeyCheckDataCommandHandlerTests.cs | 2 +- .../InformProtocolVersionIncompatibleCommandHandlerTests.cs | 2 +- .../Commands/Trusts/SetAuthCheckedCommandHandlerTests.cs | 2 +- .../Commands/Trusts/StartTrustCheckCommandHandlerTests.cs | 2 +- .../Factories/CacheKeyFactoryTests.cs | 2 +- .../Loaders/AnnouncementsLoaderTests.cs | 2 +- .../Loaders/ClientSoftwareVersionSettingsLoaderTests.cs | 2 +- .../Repositories/ClientsRepositoryTests.cs | 2 +- .../Repositories/CloudSessionsRepositoryTests.cs | 2 +- .../Repositories/InventoryRepositoryTests.cs | 2 +- .../Repositories/SharedFilesRepositoryTests.cs | 2 +- .../Repositories/SynchronizationRepositoryTests.cs | 2 +- .../Repositories/TrackingActionRepositoryTests.cs | 2 +- .../Services/AzureBlobStorageContainerServiceTests.cs | 2 +- .../Services/AzureBlobStorageServiceTests.cs | 2 +- .../Services/ClientSoftwareVersionServiceTests.cs | 2 +- .../Services/InventoryMemberServiceTests.cs | 2 +- .../Services/SharedFilesServiceTests.cs | 2 +- .../Services/SynchronizationProgressServiceTests.cs | 2 +- .../Services/SynchronizationServiceTests.cs | 2 +- 245 files changed, 245 insertions(+), 245 deletions(-) diff --git a/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering.cs b/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering.cs index b0f795212..2970c25b8 100644 --- a/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering.cs +++ b/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering.cs @@ -5,7 +5,7 @@ using ByteSync.Interfaces.Services.Sessions; using ByteSync.Models.Inventories; using ByteSync.Services.Filtering; -using FluentAssertions; +using AwesomeAssertions; using Moq; namespace ByteSync.Client.IntegrationTests.Business.Filtering; diff --git a/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_Actions.cs b/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_Actions.cs index 3602c6d5f..2d4fa16f2 100644 --- a/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_Actions.cs +++ b/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_Actions.cs @@ -4,7 +4,7 @@ using ByteSync.Common.Business.Actions; using ByteSync.Interfaces.Repositories; using ByteSync.Models.Comparisons.Result; -using FluentAssertions; +using AwesomeAssertions; namespace ByteSync.Client.IntegrationTests.Business.Filtering; diff --git a/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_Contents.cs b/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_Contents.cs index 80164c5b6..68d6e69a3 100644 --- a/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_Contents.cs +++ b/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_Contents.cs @@ -8,7 +8,7 @@ using ByteSync.Models.Comparisons.Result; using ByteSync.Models.FileSystems; using ByteSync.Models.Inventories; -using FluentAssertions; +using AwesomeAssertions; using Moq; namespace ByteSync.Client.IntegrationTests.Business.Filtering; diff --git a/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_ContentsAndDate.cs b/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_ContentsAndDate.cs index 1dde292a2..0299b7173 100644 --- a/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_ContentsAndDate.cs +++ b/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_ContentsAndDate.cs @@ -1,5 +1,5 @@ using System.Globalization; -using FluentAssertions; +using AwesomeAssertions; namespace ByteSync.Client.IntegrationTests.Business.Filtering; diff --git a/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_DataSources.cs b/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_DataSources.cs index 7a81359f8..168ca03c5 100644 --- a/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_DataSources.cs +++ b/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_DataSources.cs @@ -3,7 +3,7 @@ using ByteSync.Common.Business.Inventories; using ByteSync.Interfaces.Services.Sessions; using ByteSync.Models.Inventories; -using FluentAssertions; +using AwesomeAssertions; using Moq; namespace ByteSync.Client.IntegrationTests.Business.Filtering; diff --git a/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_DocumentationExamples.cs b/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_DocumentationExamples.cs index 273f97f5c..61327f3d8 100644 --- a/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_DocumentationExamples.cs +++ b/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_DocumentationExamples.cs @@ -8,7 +8,7 @@ using ByteSync.Interfaces.Services.Sessions; using ByteSync.Models.Comparisons.Result; using ByteSync.Models.Inventories; -using FluentAssertions; +using AwesomeAssertions; using Moq; namespace ByteSync.Client.IntegrationTests.Business.Filtering; diff --git a/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_Existence.cs b/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_Existence.cs index 5ec3524dd..a552ab64f 100644 --- a/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_Existence.cs +++ b/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_Existence.cs @@ -1,4 +1,4 @@ -using FluentAssertions; +using AwesomeAssertions; namespace ByteSync.Client.IntegrationTests.Business.Filtering; diff --git a/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_FileSystemType.cs b/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_FileSystemType.cs index 793bf80ac..4d8d17b65 100644 --- a/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_FileSystemType.cs +++ b/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_FileSystemType.cs @@ -1,4 +1,4 @@ -using FluentAssertions; +using AwesomeAssertions; namespace ByteSync.Client.IntegrationTests.Business.Filtering; diff --git a/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_Has.cs b/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_Has.cs index 83f496748..73e09be70 100644 --- a/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_Has.cs +++ b/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_Has.cs @@ -1,7 +1,7 @@ using ByteSync.Common.Business.Inventories; using ByteSync.Models.Comparisons.Result; using ByteSync.Models.FileSystems; -using FluentAssertions; +using AwesomeAssertions; namespace ByteSync.Client.IntegrationTests.Business.Filtering; diff --git a/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_LastWriteTime.cs b/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_LastWriteTime.cs index 59a883f44..da35ce64d 100644 --- a/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_LastWriteTime.cs +++ b/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_LastWriteTime.cs @@ -1,4 +1,4 @@ -using FluentAssertions; +using AwesomeAssertions; namespace ByteSync.Client.IntegrationTests.Business.Filtering; diff --git a/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_Name.cs b/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_Name.cs index 8f7de2b88..69d329fe5 100644 --- a/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_Name.cs +++ b/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_Name.cs @@ -1,4 +1,4 @@ -using FluentAssertions; +using AwesomeAssertions; using ByteSync.Business.Filtering.Expressions; using ByteSync.Business.Filtering.Parsing; diff --git a/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_Only.cs b/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_Only.cs index 4878abbd1..951494f42 100644 --- a/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_Only.cs +++ b/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_Only.cs @@ -1,4 +1,4 @@ -using FluentAssertions; +using AwesomeAssertions; namespace ByteSync.Client.IntegrationTests.Business.Filtering; diff --git a/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_Path.cs b/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_Path.cs index 857cc24b1..8ca900dbc 100644 --- a/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_Path.cs +++ b/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_Path.cs @@ -1,4 +1,4 @@ -using FluentAssertions; +using AwesomeAssertions; namespace ByteSync.Client.IntegrationTests.Business.Filtering; diff --git a/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_Size.cs b/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_Size.cs index 6c4dab589..f44153730 100644 --- a/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_Size.cs +++ b/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_Size.cs @@ -1,4 +1,4 @@ -using FluentAssertions; +using AwesomeAssertions; namespace ByteSync.Client.IntegrationTests.Business.Filtering; diff --git a/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_TextSearch.cs b/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_TextSearch.cs index ac1cdd25b..850a5c767 100644 --- a/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_TextSearch.cs +++ b/tests/ByteSync.Client.IntegrationTests/Business/Filtering/TestFiltering_TextSearch.cs @@ -4,7 +4,7 @@ using ByteSync.Common.Business.Inventories; using ByteSync.Interfaces.Services.Sessions; using ByteSync.Models.Comparisons.Result; -using FluentAssertions; +using AwesomeAssertions; using Moq; namespace ByteSync.Client.IntegrationTests.Business.Filtering; diff --git a/tests/ByteSync.Client.IntegrationTests/ByteSync.Client.IntegrationTests.csproj b/tests/ByteSync.Client.IntegrationTests/ByteSync.Client.IntegrationTests.csproj index da95f6692..ca90895da 100644 --- a/tests/ByteSync.Client.IntegrationTests/ByteSync.Client.IntegrationTests.csproj +++ b/tests/ByteSync.Client.IntegrationTests/ByteSync.Client.IntegrationTests.csproj @@ -16,7 +16,7 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive - + diff --git a/tests/ByteSync.Client.IntegrationTests/Factories/TestInventoryBuilderFactory.cs b/tests/ByteSync.Client.IntegrationTests/Factories/TestInventoryBuilderFactory.cs index 69c7078d7..fae150d47 100644 --- a/tests/ByteSync.Client.IntegrationTests/Factories/TestInventoryBuilderFactory.cs +++ b/tests/ByteSync.Client.IntegrationTests/Factories/TestInventoryBuilderFactory.cs @@ -19,7 +19,7 @@ using ByteSync.Services.Sessions; using ByteSync.TestsCommon; using DynamicData; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; diff --git a/tests/ByteSync.Client.IntegrationTests/Models/Comparisons/TestInventoryComparer.cs b/tests/ByteSync.Client.IntegrationTests/Models/Comparisons/TestInventoryComparer.cs index 49832e29e..d62f4ae0a 100644 --- a/tests/ByteSync.Client.IntegrationTests/Models/Comparisons/TestInventoryComparer.cs +++ b/tests/ByteSync.Client.IntegrationTests/Models/Comparisons/TestInventoryComparer.cs @@ -11,7 +11,7 @@ using ByteSync.Models.FileSystems; using ByteSync.Services.Sessions; using ByteSync.TestsCommon; -using FluentAssertions; +using AwesomeAssertions; using Moq; namespace ByteSync.Client.IntegrationTests.Models.Comparisons; diff --git a/tests/ByteSync.Client.IntegrationTests/Scenarios/SessionConnection/ProtocolVersion_IntegrationTests.cs b/tests/ByteSync.Client.IntegrationTests/Scenarios/SessionConnection/ProtocolVersion_IntegrationTests.cs index 20b84ee6d..2bb846b52 100644 --- a/tests/ByteSync.Client.IntegrationTests/Scenarios/SessionConnection/ProtocolVersion_IntegrationTests.cs +++ b/tests/ByteSync.Client.IntegrationTests/Scenarios/SessionConnection/ProtocolVersion_IntegrationTests.cs @@ -14,7 +14,7 @@ using ByteSync.Interfaces.Factories.ViewModels; using ByteSync.Services.Communications; using ByteSync.TestsCommon; -using FluentAssertions; +using AwesomeAssertions; using Moq; namespace ByteSync.Client.IntegrationTests.Scenarios.SessionConnection; diff --git a/tests/ByteSync.Client.IntegrationTests/Services/Actions/TestSharedAtomicActionComputer.cs b/tests/ByteSync.Client.IntegrationTests/Services/Actions/TestSharedAtomicActionComputer.cs index 52817ecf0..76c9e40ef 100644 --- a/tests/ByteSync.Client.IntegrationTests/Services/Actions/TestSharedAtomicActionComputer.cs +++ b/tests/ByteSync.Client.IntegrationTests/Services/Actions/TestSharedAtomicActionComputer.cs @@ -15,7 +15,7 @@ using ByteSync.Services.Actions; using ByteSync.Services.Sessions; using ByteSync.TestsCommon; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework.Legacy; diff --git a/tests/ByteSync.Client.IntegrationTests/Services/Applications/EnvironmentService_Tests.cs b/tests/ByteSync.Client.IntegrationTests/Services/Applications/EnvironmentService_Tests.cs index 4c38c76f0..bbfe640b3 100644 --- a/tests/ByteSync.Client.IntegrationTests/Services/Applications/EnvironmentService_Tests.cs +++ b/tests/ByteSync.Client.IntegrationTests/Services/Applications/EnvironmentService_Tests.cs @@ -3,7 +3,7 @@ using ByteSync.Business.Misc; using ByteSync.Common.Business.Misc; using ByteSync.Services.Applications; -using FluentAssertions; +using AwesomeAssertions; namespace ByteSync.Client.IntegrationTests.Services.Applications; diff --git a/tests/ByteSync.Client.IntegrationTests/Services/Communications/TestConnectionService.cs b/tests/ByteSync.Client.IntegrationTests/Services/Communications/TestConnectionService.cs index 28941dc24..b907fdf1c 100644 --- a/tests/ByteSync.Client.IntegrationTests/Services/Communications/TestConnectionService.cs +++ b/tests/ByteSync.Client.IntegrationTests/Services/Communications/TestConnectionService.cs @@ -12,7 +12,7 @@ using ByteSync.Services.Communications; using ByteSync.TestsCommon; using ByteSync.TestsCommon.TestHelpers; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.AspNetCore.SignalR.Client; using Moq; using IConnectionFactory = ByteSync.Interfaces.Factories.IConnectionFactory; diff --git a/tests/ByteSync.Client.IntegrationTests/Services/Communications/Transfers/TestSlicerEncrypter.cs b/tests/ByteSync.Client.IntegrationTests/Services/Communications/Transfers/TestSlicerEncrypter.cs index c40d72882..8dfb9e617 100644 --- a/tests/ByteSync.Client.IntegrationTests/Services/Communications/Transfers/TestSlicerEncrypter.cs +++ b/tests/ByteSync.Client.IntegrationTests/Services/Communications/Transfers/TestSlicerEncrypter.cs @@ -10,7 +10,7 @@ using ByteSync.Interfaces.Repositories; using ByteSync.Services.Encryptions; using ByteSync.TestsCommon; -using FluentAssertions; +using AwesomeAssertions; using ICSharpCode.SharpZipLib.Zip; using Moq; diff --git a/tests/ByteSync.Client.IntegrationTests/Services/Communications/Transfers/Upload_SliceAndParallelism_Tests.cs b/tests/ByteSync.Client.IntegrationTests/Services/Communications/Transfers/Upload_SliceAndParallelism_Tests.cs index 91079fe20..a72c4250f 100644 --- a/tests/ByteSync.Client.IntegrationTests/Services/Communications/Transfers/Upload_SliceAndParallelism_Tests.cs +++ b/tests/ByteSync.Client.IntegrationTests/Services/Communications/Transfers/Upload_SliceAndParallelism_Tests.cs @@ -7,7 +7,7 @@ using ByteSync.Interfaces.Factories; using ByteSync.Interfaces.Repositories; using ByteSync.Services; -using FluentAssertions; +using AwesomeAssertions; namespace ByteSync.Client.IntegrationTests.Services.Communications.Transfers; diff --git a/tests/ByteSync.Client.IntegrationTests/Services/Comparisons/TargetInaccessible_IntegrationTests.cs b/tests/ByteSync.Client.IntegrationTests/Services/Comparisons/TargetInaccessible_IntegrationTests.cs index 5aba9cce8..c90b3a0c9 100644 --- a/tests/ByteSync.Client.IntegrationTests/Services/Comparisons/TargetInaccessible_IntegrationTests.cs +++ b/tests/ByteSync.Client.IntegrationTests/Services/Comparisons/TargetInaccessible_IntegrationTests.cs @@ -17,7 +17,7 @@ using ByteSync.Services.Comparisons; using ByteSync.Services.Sessions; using ByteSync.TestsCommon; -using FluentAssertions; +using AwesomeAssertions; using Moq; namespace ByteSync.Client.IntegrationTests.Services.Comparisons; diff --git a/tests/ByteSync.Client.IntegrationTests/Services/Comparisons/TestAtomicActionConsistencyChecker.cs b/tests/ByteSync.Client.IntegrationTests/Services/Comparisons/TestAtomicActionConsistencyChecker.cs index 2a821e14c..b77e0769a 100644 --- a/tests/ByteSync.Client.IntegrationTests/Services/Comparisons/TestAtomicActionConsistencyChecker.cs +++ b/tests/ByteSync.Client.IntegrationTests/Services/Comparisons/TestAtomicActionConsistencyChecker.cs @@ -18,7 +18,7 @@ using ByteSync.Services.Comparisons; using ByteSync.Services.Sessions; using ByteSync.TestsCommon; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework.Legacy; diff --git a/tests/ByteSync.Client.IntegrationTests/Services/Inventories/FullInventoryRunner_IntegrationTests.cs b/tests/ByteSync.Client.IntegrationTests/Services/Inventories/FullInventoryRunner_IntegrationTests.cs index 2af6a269b..512745e65 100644 --- a/tests/ByteSync.Client.IntegrationTests/Services/Inventories/FullInventoryRunner_IntegrationTests.cs +++ b/tests/ByteSync.Client.IntegrationTests/Services/Inventories/FullInventoryRunner_IntegrationTests.cs @@ -25,7 +25,7 @@ using ByteSync.Services.Inventories; using ByteSync.Services.Sessions; using ByteSync.TestsCommon; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; diff --git a/tests/ByteSync.Client.IntegrationTests/Services/Inventories/InventoryBuilderAccessHandling_IntegrationTests.cs b/tests/ByteSync.Client.IntegrationTests/Services/Inventories/InventoryBuilderAccessHandling_IntegrationTests.cs index ac3075a34..3f39ab5b7 100644 --- a/tests/ByteSync.Client.IntegrationTests/Services/Inventories/InventoryBuilderAccessHandling_IntegrationTests.cs +++ b/tests/ByteSync.Client.IntegrationTests/Services/Inventories/InventoryBuilderAccessHandling_IntegrationTests.cs @@ -14,7 +14,7 @@ using ByteSync.Interfaces.Controls.Applications; using ByteSync.Services.Inventories; using ByteSync.TestsCommon; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; diff --git a/tests/ByteSync.Client.IntegrationTests/Services/Inventories/InventoryCompleteness_IntegrationTests.cs b/tests/ByteSync.Client.IntegrationTests/Services/Inventories/InventoryCompleteness_IntegrationTests.cs index 42464d7c8..80f5f22b6 100644 --- a/tests/ByteSync.Client.IntegrationTests/Services/Inventories/InventoryCompleteness_IntegrationTests.cs +++ b/tests/ByteSync.Client.IntegrationTests/Services/Inventories/InventoryCompleteness_IntegrationTests.cs @@ -13,7 +13,7 @@ using ByteSync.Repositories; using ByteSync.Services.Inventories; using ByteSync.TestsCommon; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; diff --git a/tests/ByteSync.Client.IntegrationTests/Services/Inventories/TestDataNodeService.cs b/tests/ByteSync.Client.IntegrationTests/Services/Inventories/TestDataNodeService.cs index 9c9b27094..a8baf8e91 100644 --- a/tests/ByteSync.Client.IntegrationTests/Services/Inventories/TestDataNodeService.cs +++ b/tests/ByteSync.Client.IntegrationTests/Services/Inventories/TestDataNodeService.cs @@ -11,7 +11,7 @@ using ByteSync.Repositories; using ByteSync.Services.Inventories; using ByteSync.TestsCommon; -using FluentAssertions; +using AwesomeAssertions; using Moq; namespace ByteSync.Client.IntegrationTests.Services.Inventories; diff --git a/tests/ByteSync.Client.IntegrationTests/Services/Inventories/TestDataSourceService.cs b/tests/ByteSync.Client.IntegrationTests/Services/Inventories/TestDataSourceService.cs index 9ac04cf36..e79b79c42 100644 --- a/tests/ByteSync.Client.IntegrationTests/Services/Inventories/TestDataSourceService.cs +++ b/tests/ByteSync.Client.IntegrationTests/Services/Inventories/TestDataSourceService.cs @@ -12,7 +12,7 @@ using ByteSync.Repositories; using ByteSync.Services.Inventories; using ByteSync.TestsCommon; -using FluentAssertions; +using AwesomeAssertions; using Moq; namespace ByteSync.Client.IntegrationTests.Services.Inventories; diff --git a/tests/ByteSync.Client.IntegrationTests/Services/Inventories/TestInventoryBuilder.cs b/tests/ByteSync.Client.IntegrationTests/Services/Inventories/TestInventoryBuilder.cs index 908976552..7d8bf65e9 100644 --- a/tests/ByteSync.Client.IntegrationTests/Services/Inventories/TestInventoryBuilder.cs +++ b/tests/ByteSync.Client.IntegrationTests/Services/Inventories/TestInventoryBuilder.cs @@ -20,7 +20,7 @@ using ByteSync.Services.Inventories; using ByteSync.Services.Sessions; using ByteSync.TestsCommon; -using FluentAssertions; +using AwesomeAssertions; using ICSharpCode.SharpZipLib.Zip; using Microsoft.Extensions.Logging; using Moq; diff --git a/tests/ByteSync.Client.IntegrationTests/Services/Synchronizations/TestSynchronizationActionHandler.cs b/tests/ByteSync.Client.IntegrationTests/Services/Synchronizations/TestSynchronizationActionHandler.cs index a1f4cc829..84f165a66 100644 --- a/tests/ByteSync.Client.IntegrationTests/Services/Synchronizations/TestSynchronizationActionHandler.cs +++ b/tests/ByteSync.Client.IntegrationTests/Services/Synchronizations/TestSynchronizationActionHandler.cs @@ -22,7 +22,7 @@ using ByteSync.Services.Sessions; using ByteSync.Services.Synchronizations; using ByteSync.TestsCommon; -using FluentAssertions; +using AwesomeAssertions; using Moq; namespace ByteSync.Client.IntegrationTests.Services.Synchronizations; diff --git a/tests/ByteSync.Client.IntegrationTests/Services/Updates/TestDeleteUpdateBackupSnippetsService.cs b/tests/ByteSync.Client.IntegrationTests/Services/Updates/TestDeleteUpdateBackupSnippetsService.cs index 17ee26187..b95aaca43 100644 --- a/tests/ByteSync.Client.IntegrationTests/Services/Updates/TestDeleteUpdateBackupSnippetsService.cs +++ b/tests/ByteSync.Client.IntegrationTests/Services/Updates/TestDeleteUpdateBackupSnippetsService.cs @@ -3,7 +3,7 @@ using ByteSync.Interfaces.Updates; using ByteSync.Services.Updates; using ByteSync.TestsCommon; -using FluentAssertions; +using AwesomeAssertions; using Moq; namespace ByteSync.Client.IntegrationTests.Services.Updates; diff --git a/tests/ByteSync.Client.IntegrationTests/Services/Updates/TestUpdateExistingFilesBackuper.cs b/tests/ByteSync.Client.IntegrationTests/Services/Updates/TestUpdateExistingFilesBackuper.cs index 2a9c51d08..47dc715a1 100644 --- a/tests/ByteSync.Client.IntegrationTests/Services/Updates/TestUpdateExistingFilesBackuper.cs +++ b/tests/ByteSync.Client.IntegrationTests/Services/Updates/TestUpdateExistingFilesBackuper.cs @@ -3,7 +3,7 @@ using ByteSync.Interfaces.Repositories.Updates; using ByteSync.Services.Updates; using ByteSync.TestsCommon; -using FluentAssertions; +using AwesomeAssertions; using Moq; namespace ByteSync.Client.IntegrationTests.Services.Updates; diff --git a/tests/ByteSync.Client.IntegrationTests/ViewModels/Misc/FlyoutContainerViewModel_HeadlessTests.cs b/tests/ByteSync.Client.IntegrationTests/ViewModels/Misc/FlyoutContainerViewModel_HeadlessTests.cs index bb4f28a86..01cc23651 100644 --- a/tests/ByteSync.Client.IntegrationTests/ViewModels/Misc/FlyoutContainerViewModel_HeadlessTests.cs +++ b/tests/ByteSync.Client.IntegrationTests/ViewModels/Misc/FlyoutContainerViewModel_HeadlessTests.cs @@ -3,7 +3,7 @@ using ByteSync.Interfaces.Factories.ViewModels; using ByteSync.Interfaces.Services.Localizations; using ByteSync.ViewModels.Misc; -using FluentAssertions; +using AwesomeAssertions; using Moq; namespace ByteSync.Client.IntegrationTests.ViewModels.Misc; diff --git a/tests/ByteSync.Client.IntegrationTests/ViewModels/TrustedNetworks/AddTrustedClientViewModel_HeadlessTests.cs b/tests/ByteSync.Client.IntegrationTests/ViewModels/TrustedNetworks/AddTrustedClientViewModel_HeadlessTests.cs index 7b397e8c1..fd1b7bd88 100644 --- a/tests/ByteSync.Client.IntegrationTests/ViewModels/TrustedNetworks/AddTrustedClientViewModel_HeadlessTests.cs +++ b/tests/ByteSync.Client.IntegrationTests/ViewModels/TrustedNetworks/AddTrustedClientViewModel_HeadlessTests.cs @@ -10,7 +10,7 @@ using ByteSync.Interfaces.Controls.Communications; using ByteSync.ViewModels.Misc; using ByteSync.ViewModels.TrustedNetworks; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; diff --git a/tests/ByteSync.Client.IntegrationTests/Views/MainWindow_HeadlessTests.cs b/tests/ByteSync.Client.IntegrationTests/Views/MainWindow_HeadlessTests.cs index df0f243a5..86f029b67 100644 --- a/tests/ByteSync.Client.IntegrationTests/Views/MainWindow_HeadlessTests.cs +++ b/tests/ByteSync.Client.IntegrationTests/Views/MainWindow_HeadlessTests.cs @@ -1,7 +1,7 @@ using Avalonia.ReactiveUI; using ByteSync.Client.IntegrationTests.TestHelpers; using ByteSync.Views; -using FluentAssertions; +using AwesomeAssertions; using ReactiveUI; using Splat; diff --git a/tests/ByteSync.Client.UnitTests/Business/Communications/TestDownloadPartsInfo.cs b/tests/ByteSync.Client.UnitTests/Business/Communications/TestDownloadPartsInfo.cs index 6bfcd19c4..7d1f4c3cc 100644 --- a/tests/ByteSync.Client.UnitTests/Business/Communications/TestDownloadPartsInfo.cs +++ b/tests/ByteSync.Client.UnitTests/Business/Communications/TestDownloadPartsInfo.cs @@ -1,6 +1,6 @@ using ByteSync.Business.Communications.Downloading; using ByteSync.TestsCommon; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Business.Communications; diff --git a/tests/ByteSync.Client.UnitTests/Business/Communications/Transfers/FileUploaderSliceTests.cs b/tests/ByteSync.Client.UnitTests/Business/Communications/Transfers/FileUploaderSliceTests.cs index 6b17e599b..e6e7fe82b 100644 --- a/tests/ByteSync.Client.UnitTests/Business/Communications/Transfers/FileUploaderSliceTests.cs +++ b/tests/ByteSync.Client.UnitTests/Business/Communications/Transfers/FileUploaderSliceTests.cs @@ -1,5 +1,5 @@ using ByteSync.Business.Communications.Transfers; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Business.Communications.Transfers; diff --git a/tests/ByteSync.Client.UnitTests/Business/Communications/Transfers/UploadProgressStateTests.cs b/tests/ByteSync.Client.UnitTests/Business/Communications/Transfers/UploadProgressStateTests.cs index fb5e570a6..d5bf6e965 100644 --- a/tests/ByteSync.Client.UnitTests/Business/Communications/Transfers/UploadProgressStateTests.cs +++ b/tests/ByteSync.Client.UnitTests/Business/Communications/Transfers/UploadProgressStateTests.cs @@ -1,5 +1,5 @@ using ByteSync.Business.Communications.Transfers; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Business.Communications.Transfers; diff --git a/tests/ByteSync.Client.UnitTests/Business/Configurations/ApplicationSettingsTests.cs b/tests/ByteSync.Client.UnitTests/Business/Configurations/ApplicationSettingsTests.cs index 1a064a5dc..6f17454ff 100644 --- a/tests/ByteSync.Client.UnitTests/Business/Configurations/ApplicationSettingsTests.cs +++ b/tests/ByteSync.Client.UnitTests/Business/Configurations/ApplicationSettingsTests.cs @@ -1,5 +1,5 @@ using ByteSync.Business.Configurations; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Business.Configurations; diff --git a/tests/ByteSync.Client.UnitTests/Business/Filtering/IdentifiersTest.cs b/tests/ByteSync.Client.UnitTests/Business/Filtering/IdentifiersTest.cs index a2debe159..f2ea3165d 100644 --- a/tests/ByteSync.Client.UnitTests/Business/Filtering/IdentifiersTest.cs +++ b/tests/ByteSync.Client.UnitTests/Business/Filtering/IdentifiersTest.cs @@ -1,6 +1,6 @@ using System.Reflection; using ByteSync.Business.Filtering.Parsing; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Business.Filtering; diff --git a/tests/ByteSync.Client.UnitTests/Business/Filtering/PropertyComparerTests.cs b/tests/ByteSync.Client.UnitTests/Business/Filtering/PropertyComparerTests.cs index f0838aa72..daa87c017 100644 --- a/tests/ByteSync.Client.UnitTests/Business/Filtering/PropertyComparerTests.cs +++ b/tests/ByteSync.Client.UnitTests/Business/Filtering/PropertyComparerTests.cs @@ -1,7 +1,7 @@ using ByteSync.Business.Filtering.Evaluators; using ByteSync.Business.Filtering.Parsing; using ByteSync.Business.Filtering.Values; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Business.Filtering; diff --git a/tests/ByteSync.Client.UnitTests/Business/Filtering/PropertyComparisonExpressionEvaluatorTests.cs b/tests/ByteSync.Client.UnitTests/Business/Filtering/PropertyComparisonExpressionEvaluatorTests.cs index bf351a8f1..8bad357b3 100644 --- a/tests/ByteSync.Client.UnitTests/Business/Filtering/PropertyComparisonExpressionEvaluatorTests.cs +++ b/tests/ByteSync.Client.UnitTests/Business/Filtering/PropertyComparisonExpressionEvaluatorTests.cs @@ -7,7 +7,7 @@ using ByteSync.Common.Business.Inventories; using ByteSync.Interfaces.Services.Filtering; using ByteSync.Models.Comparisons.Result; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Business/Inventories/InventoryGlobalStatusAggregatorTests.cs b/tests/ByteSync.Client.UnitTests/Business/Inventories/InventoryGlobalStatusAggregatorTests.cs index 491a5e873..e81a5081d 100644 --- a/tests/ByteSync.Client.UnitTests/Business/Inventories/InventoryGlobalStatusAggregatorTests.cs +++ b/tests/ByteSync.Client.UnitTests/Business/Inventories/InventoryGlobalStatusAggregatorTests.cs @@ -1,6 +1,6 @@ using ByteSync.Business.Inventories; using ByteSync.Common.Business.Sessions; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Business.Inventories; diff --git a/tests/ByteSync.Client.UnitTests/Business/Inventories/InventoryMonitorDataTests.cs b/tests/ByteSync.Client.UnitTests/Business/Inventories/InventoryMonitorDataTests.cs index 0c395b535..ae93efffd 100644 --- a/tests/ByteSync.Client.UnitTests/Business/Inventories/InventoryMonitorDataTests.cs +++ b/tests/ByteSync.Client.UnitTests/Business/Inventories/InventoryMonitorDataTests.cs @@ -1,5 +1,5 @@ using ByteSync.Business.Inventories; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Business.Inventories; diff --git a/tests/ByteSync.Client.UnitTests/Business/Inventories/InventoryProcessDataTests.cs b/tests/ByteSync.Client.UnitTests/Business/Inventories/InventoryProcessDataTests.cs index da296adc9..4110d2e6b 100644 --- a/tests/ByteSync.Client.UnitTests/Business/Inventories/InventoryProcessDataTests.cs +++ b/tests/ByteSync.Client.UnitTests/Business/Inventories/InventoryProcessDataTests.cs @@ -3,7 +3,7 @@ using System.Reactive.Linq; using ByteSync.Business.Inventories; using ByteSync.Models.Inventories; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Business.Inventories; diff --git a/tests/ByteSync.Client.UnitTests/Business/Sessions/MatchingModesTests.cs b/tests/ByteSync.Client.UnitTests/Business/Sessions/MatchingModesTests.cs index e6942efa7..ae856d42f 100644 --- a/tests/ByteSync.Client.UnitTests/Business/Sessions/MatchingModesTests.cs +++ b/tests/ByteSync.Client.UnitTests/Business/Sessions/MatchingModesTests.cs @@ -1,6 +1,6 @@ using System.Text.Json; using ByteSync.Business.Sessions; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Business.Sessions; diff --git a/tests/ByteSync.Client.UnitTests/Business/Shared/SharedDataPartTests.cs b/tests/ByteSync.Client.UnitTests/Business/Shared/SharedDataPartTests.cs index 3efaaedeb..fcf750231 100644 --- a/tests/ByteSync.Client.UnitTests/Business/Shared/SharedDataPartTests.cs +++ b/tests/ByteSync.Client.UnitTests/Business/Shared/SharedDataPartTests.cs @@ -2,7 +2,7 @@ using ByteSync.Business.Actions.Shared; using ByteSync.Common.Business.Inventories; using ByteSync.Common.Controls.Json; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Business.Shared; diff --git a/tests/ByteSync.Client.UnitTests/ByteSync.Client.UnitTests.csproj b/tests/ByteSync.Client.UnitTests/ByteSync.Client.UnitTests.csproj index 781b9c8cf..10ffdd66a 100644 --- a/tests/ByteSync.Client.UnitTests/ByteSync.Client.UnitTests.csproj +++ b/tests/ByteSync.Client.UnitTests/ByteSync.Client.UnitTests.csproj @@ -11,7 +11,7 @@ - + diff --git a/tests/ByteSync.Client.UnitTests/Common/UploadFileResponseTests.cs b/tests/ByteSync.Client.UnitTests/Common/UploadFileResponseTests.cs index a99b17acf..df6911117 100644 --- a/tests/ByteSync.Client.UnitTests/Common/UploadFileResponseTests.cs +++ b/tests/ByteSync.Client.UnitTests/Common/UploadFileResponseTests.cs @@ -1,5 +1,5 @@ using ByteSync.Common.Business.Communications.Transfers; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Common; diff --git a/tests/ByteSync.Client.UnitTests/Factories/ViewModels/MatchingModeViewModelFactoryTests.cs b/tests/ByteSync.Client.UnitTests/Factories/ViewModels/MatchingModeViewModelFactoryTests.cs index f8dccb1ab..74ca0307f 100644 --- a/tests/ByteSync.Client.UnitTests/Factories/ViewModels/MatchingModeViewModelFactoryTests.cs +++ b/tests/ByteSync.Client.UnitTests/Factories/ViewModels/MatchingModeViewModelFactoryTests.cs @@ -3,7 +3,7 @@ using ByteSync.Factories.ViewModels; using ByteSync.Interfaces.Services.Localizations; using ByteSync.ViewModels.Sessions.Managing; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Helpers/ColorUtilsTests.cs b/tests/ByteSync.Client.UnitTests/Helpers/ColorUtilsTests.cs index 796f61712..e80e4624f 100644 --- a/tests/ByteSync.Client.UnitTests/Helpers/ColorUtilsTests.cs +++ b/tests/ByteSync.Client.UnitTests/Helpers/ColorUtilsTests.cs @@ -1,6 +1,6 @@ using Avalonia.Media; using ByteSync.Helpers; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Helpers; diff --git a/tests/ByteSync.Client.UnitTests/Helpers/ProtectedPathsTests.cs b/tests/ByteSync.Client.UnitTests/Helpers/ProtectedPathsTests.cs index dfaa9954f..e25f98ce8 100644 --- a/tests/ByteSync.Client.UnitTests/Helpers/ProtectedPathsTests.cs +++ b/tests/ByteSync.Client.UnitTests/Helpers/ProtectedPathsTests.cs @@ -1,6 +1,6 @@ using ByteSync.Common.Business.Misc; using ByteSync.Helpers; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Helpers; diff --git a/tests/ByteSync.Client.UnitTests/Helpers/ReactiveUtilsTests.cs b/tests/ByteSync.Client.UnitTests/Helpers/ReactiveUtilsTests.cs index 6c2026896..71d4efa0e 100644 --- a/tests/ByteSync.Client.UnitTests/Helpers/ReactiveUtilsTests.cs +++ b/tests/ByteSync.Client.UnitTests/Helpers/ReactiveUtilsTests.cs @@ -1,6 +1,6 @@ using System.Reactive.Subjects; using ByteSync.Helpers; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Helpers; diff --git a/tests/ByteSync.Client.UnitTests/Helpers/ReactiveViewModelTestHelpers.cs b/tests/ByteSync.Client.UnitTests/Helpers/ReactiveViewModelTestHelpers.cs index 7afd836f9..0de783712 100644 --- a/tests/ByteSync.Client.UnitTests/Helpers/ReactiveViewModelTestHelpers.cs +++ b/tests/ByteSync.Client.UnitTests/Helpers/ReactiveViewModelTestHelpers.cs @@ -1,5 +1,5 @@ using System.Linq.Expressions; -using FluentAssertions; +using AwesomeAssertions; using ReactiveUI; namespace ByteSync.Client.UnitTests.Helpers; diff --git a/tests/ByteSync.Client.UnitTests/Models/Comparisons/ContentIdentityAccessTests.cs b/tests/ByteSync.Client.UnitTests/Models/Comparisons/ContentIdentityAccessTests.cs index e32a13f4e..1526b8f41 100644 --- a/tests/ByteSync.Client.UnitTests/Models/Comparisons/ContentIdentityAccessTests.cs +++ b/tests/ByteSync.Client.UnitTests/Models/Comparisons/ContentIdentityAccessTests.cs @@ -2,7 +2,7 @@ using ByteSync.Models.Comparisons.Result; using ByteSync.Models.FileSystems; using ByteSync.Models.Inventories; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Models.Comparisons; diff --git a/tests/ByteSync.Client.UnitTests/Models/Inventories/InventoryPartSkippedCountsTests.cs b/tests/ByteSync.Client.UnitTests/Models/Inventories/InventoryPartSkippedCountsTests.cs index 4899cfd0c..5dfe37b57 100644 --- a/tests/ByteSync.Client.UnitTests/Models/Inventories/InventoryPartSkippedCountsTests.cs +++ b/tests/ByteSync.Client.UnitTests/Models/Inventories/InventoryPartSkippedCountsTests.cs @@ -1,5 +1,5 @@ using ByteSync.Models.Inventories; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Models.Inventories; diff --git a/tests/ByteSync.Client.UnitTests/Models/Inventories/SkippedEntryTests.cs b/tests/ByteSync.Client.UnitTests/Models/Inventories/SkippedEntryTests.cs index 753800735..4eadd8354 100644 --- a/tests/ByteSync.Client.UnitTests/Models/Inventories/SkippedEntryTests.cs +++ b/tests/ByteSync.Client.UnitTests/Models/Inventories/SkippedEntryTests.cs @@ -1,6 +1,6 @@ using ByteSync.Business.Inventories; using ByteSync.Models.Inventories; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Models.Inventories; diff --git a/tests/ByteSync.Client.UnitTests/Services/Actions/SharedActionsGroupOrganizer_UnitTests.cs b/tests/ByteSync.Client.UnitTests/Services/Actions/SharedActionsGroupOrganizer_UnitTests.cs index 57085136c..d287924ac 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Actions/SharedActionsGroupOrganizer_UnitTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Actions/SharedActionsGroupOrganizer_UnitTests.cs @@ -6,7 +6,7 @@ using ByteSync.Interfaces.Repositories; using ByteSync.Interfaces.Services.Communications; using ByteSync.Services.Actions; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Applications/MsixPfnParserTests.cs b/tests/ByteSync.Client.UnitTests/Services/Applications/MsixPfnParserTests.cs index b367f9b11..fef1888e0 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Applications/MsixPfnParserTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Applications/MsixPfnParserTests.cs @@ -1,5 +1,5 @@ using ByteSync.Services.Applications; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Services.Applications; diff --git a/tests/ByteSync.Client.UnitTests/Services/Communications/Api/ApiResponseContentHelperTests.cs b/tests/ByteSync.Client.UnitTests/Services/Communications/Api/ApiResponseContentHelperTests.cs index 199d459d0..e0da931a7 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Communications/Api/ApiResponseContentHelperTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Communications/Api/ApiResponseContentHelperTests.cs @@ -1,5 +1,5 @@ using ByteSync.Services.Communications.Api; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Services.Communications.Api; diff --git a/tests/ByteSync.Client.UnitTests/Services/Communications/Api/SynchronizationApiClientTests.cs b/tests/ByteSync.Client.UnitTests/Services/Communications/Api/SynchronizationApiClientTests.cs index a0bd31907..2609597e0 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Communications/Api/SynchronizationApiClientTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Communications/Api/SynchronizationApiClientTests.cs @@ -3,7 +3,7 @@ using ByteSync.Common.Business.Synchronizations; using ByteSync.Interfaces.Controls.Communications.Http; using ByteSync.Services.Communications.Api; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Communications/Api/TrustApiClientTests.cs b/tests/ByteSync.Client.UnitTests/Services/Communications/Api/TrustApiClientTests.cs index b303d1c87..75f59ef97 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Communications/Api/TrustApiClientTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Communications/Api/TrustApiClientTests.cs @@ -2,7 +2,7 @@ using ByteSync.Common.Business.Versions; using ByteSync.Interfaces.Controls.Communications.Http; using ByteSync.Services.Communications.Api; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Communications/ConnectionServiceTests.cs b/tests/ByteSync.Client.UnitTests/Services/Communications/ConnectionServiceTests.cs index 7b7664d97..7fa469e06 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Communications/ConnectionServiceTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Communications/ConnectionServiceTests.cs @@ -6,7 +6,7 @@ using ByteSync.Interfaces.Services.Communications; using ByteSync.Services.Communications; using ByteSync.TestsCommon.TestHelpers; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Communications/PublicKeysManagerTests.cs b/tests/ByteSync.Client.UnitTests/Services/Communications/PublicKeysManagerTests.cs index 39fb3075f..b6609298d 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Communications/PublicKeysManagerTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Communications/PublicKeysManagerTests.cs @@ -7,7 +7,7 @@ using ByteSync.Interfaces.Services.Communications; using ByteSync.Services.Communications; using ByteSync.TestsCommon; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Communications/PublicKeysTrusterTests.cs b/tests/ByteSync.Client.UnitTests/Services/Communications/PublicKeysTrusterTests.cs index f8714a102..893244b8b 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Communications/PublicKeysTrusterTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Communications/PublicKeysTrusterTests.cs @@ -12,7 +12,7 @@ using ByteSync.Interfaces.Factories.ViewModels; using ByteSync.Services.Communications; using ByteSync.TestsCommon; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Communications/SearchUpdateServiceTests.cs b/tests/ByteSync.Client.UnitTests/Services/Communications/SearchUpdateServiceTests.cs index aac80a230..5c513624f 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Communications/SearchUpdateServiceTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Communications/SearchUpdateServiceTests.cs @@ -4,7 +4,7 @@ using ByteSync.Interfaces.Repositories; using ByteSync.Interfaces.Updates; using ByteSync.Services.Updates; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Communications/TestSafetyWordsComputer.cs b/tests/ByteSync.Client.UnitTests/Services/Communications/TestSafetyWordsComputer.cs index deccd7cf6..22c0f7093 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Communications/TestSafetyWordsComputer.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Communications/TestSafetyWordsComputer.cs @@ -1,7 +1,7 @@ using ByteSync.Common.Helpers; using ByteSync.Services.Communications; using ByteSync.TestsCommon; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Services.Communications; diff --git a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/AfterTransfers/AfterTransferSynchronizationSharedFileTests.cs b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/AfterTransfers/AfterTransferSynchronizationSharedFileTests.cs index 750e0ee19..18974e67c 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/AfterTransfers/AfterTransferSynchronizationSharedFileTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/AfterTransfers/AfterTransferSynchronizationSharedFileTests.cs @@ -5,7 +5,7 @@ using ByteSync.Interfaces.Controls.Communications.Http; using ByteSync.Interfaces.Controls.Synchronizations; using ByteSync.Services.Communications.Transfers.AfterTransfers; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/DownloadPartsCoordinatorTests.cs b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/DownloadPartsCoordinatorTests.cs index 0ab26b512..5b30d051b 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/DownloadPartsCoordinatorTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/DownloadPartsCoordinatorTests.cs @@ -1,5 +1,5 @@ using ByteSync.Services.Communications.Transfers.Downloading; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Services.Communications.Transfers.Downloading; diff --git a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/DownloadTargetBuilderTests.cs b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/DownloadTargetBuilderTests.cs index e741daf36..709ed8ab9 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/DownloadTargetBuilderTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/DownloadTargetBuilderTests.cs @@ -8,7 +8,7 @@ using ByteSync.Interfaces.Services.Communications; using ByteSync.Interfaces.Services.Sessions; using ByteSync.Services.Communications.Transfers.Downloading; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/ErrorManagerTests.cs b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/ErrorManagerTests.cs index 4d0adf37b..d71733d5d 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/ErrorManagerTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/ErrorManagerTests.cs @@ -1,7 +1,7 @@ using System.Collections.Concurrent; using System.Threading.Channels; using ByteSync.Services.Communications.Transfers.Downloading; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Services.Communications.Transfers.Downloading; diff --git a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/FileDownloaderCacheTests.cs b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/FileDownloaderCacheTests.cs index b47590f9a..4e355d68a 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/FileDownloaderCacheTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/FileDownloaderCacheTests.cs @@ -6,7 +6,7 @@ using ByteSync.Interfaces.Factories; using ByteSync.Interfaces.Services.Sessions; using ByteSync.Services.Communications.Transfers.Downloading; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/FileDownloaderFactoryTests.cs b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/FileDownloaderFactoryTests.cs index f76ea0f30..0ffe44e1a 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/FileDownloaderFactoryTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/FileDownloaderFactoryTests.cs @@ -6,7 +6,7 @@ using ByteSync.Interfaces.Controls.Encryptions; using ByteSync.Interfaces.Factories; using ByteSync.TestsCommon.Mocking; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/FileMergerTests.cs b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/FileMergerTests.cs index 47fee165f..c70b13d04 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/FileMergerTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/FileMergerTests.cs @@ -2,7 +2,7 @@ using ByteSync.Interfaces.Controls.Communications; using ByteSync.Interfaces.Controls.Encryptions; using ByteSync.Services.Communications.Transfers.Downloading; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/PostDownloadHandlerProxyTests.cs b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/PostDownloadHandlerProxyTests.cs index b7dc03e46..b2ae0b295 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/PostDownloadHandlerProxyTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/PostDownloadHandlerProxyTests.cs @@ -4,7 +4,7 @@ using ByteSync.Interfaces.Controls.Synchronizations; using ByteSync.Interfaces.Profiles; using ByteSync.Services.Communications.Transfers.Downloading; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/ResourceManagerTests.cs b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/ResourceManagerTests.cs index 0ab0a878b..bb7782d43 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/ResourceManagerTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/ResourceManagerTests.cs @@ -1,6 +1,6 @@ using ByteSync.Business.Communications.Downloading; using ByteSync.Services.Communications.Transfers.Downloading; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Services.Communications.Transfers.Downloading; diff --git a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/SynchronizationDownloadFinalizerTests.cs b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/SynchronizationDownloadFinalizerTests.cs index 56cf47a1a..4a87bd39f 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/SynchronizationDownloadFinalizerTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Downloading/SynchronizationDownloadFinalizerTests.cs @@ -4,7 +4,7 @@ using ByteSync.Interfaces.Controls.Synchronizations; using ByteSync.Interfaces.Factories; using ByteSync.Services.Communications.Transfers.Downloading; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Strategies/CloudflareR2UploadStrategyTests.cs b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Strategies/CloudflareR2UploadStrategyTests.cs index 24da50011..6d6f063dc 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Strategies/CloudflareR2UploadStrategyTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Strategies/CloudflareR2UploadStrategyTests.cs @@ -3,7 +3,7 @@ using ByteSync.Common.Business.Communications.Transfers; using ByteSync.Common.Business.SharedFiles; using ByteSync.Services.Communications.Transfers.Strategies; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging.Abstractions; using Moq; using Moq.Protected; diff --git a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Strategies/UploadFailureClassifierTests.cs b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Strategies/UploadFailureClassifierTests.cs index d8d0ca73c..7ed091939 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Strategies/UploadFailureClassifierTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Strategies/UploadFailureClassifierTests.cs @@ -1,6 +1,6 @@ using ByteSync.Common.Business.Communications.Transfers; using ByteSync.Services.Communications.Transfers.Strategies; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; using System.Net.Http; using System.Net.Sockets; diff --git a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/AdaptiveUploadControllerTests.cs b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/AdaptiveUploadControllerTests.cs index c0b281383..cef186b29 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/AdaptiveUploadControllerTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/AdaptiveUploadControllerTests.cs @@ -4,7 +4,7 @@ using ByteSync.Common.Business.Sessions; using ByteSync.Interfaces.Services.Sessions; using ByteSync.Services.Communications.Transfers.Uploading; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging.Abstractions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileSlicerMetricsTests.cs b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileSlicerMetricsTests.cs index 3da3d1c6e..d52330465 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileSlicerMetricsTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileSlicerMetricsTests.cs @@ -4,7 +4,7 @@ using ByteSync.Interfaces.Controls.Communications; using ByteSync.Interfaces.Controls.Encryptions; using ByteSync.Services.Communications.Transfers.Uploading; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileSlicerTests.cs b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileSlicerTests.cs index 6de5bbf10..123a1e495 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileSlicerTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileSlicerTests.cs @@ -4,7 +4,7 @@ using ByteSync.Interfaces.Controls.Communications; using ByteSync.Interfaces.Controls.Encryptions; using ByteSync.Services.Communications.Transfers.Uploading; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileUploadCoordinatorTests.cs b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileUploadCoordinatorTests.cs index c9ad5e406..b2156095b 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileUploadCoordinatorTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileUploadCoordinatorTests.cs @@ -1,6 +1,6 @@ using ByteSync.Business.Communications.Transfers; using ByteSync.Services.Communications.Transfers.Uploading; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileUploadPreparerTests.cs b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileUploadPreparerTests.cs index 7683ea4f8..f0abc00f8 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileUploadPreparerTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileUploadPreparerTests.cs @@ -1,7 +1,7 @@ using ByteSync.Common.Business.SharedFiles; using ByteSync.Interfaces.Controls.Communications; using ByteSync.Services.Communications.Transfers.Uploading; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Services.Communications.Transfers.Uploading; diff --git a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileUploadProcessorFactoryTests.cs b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileUploadProcessorFactoryTests.cs index ab55271a2..4abbfada2 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileUploadProcessorFactoryTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileUploadProcessorFactoryTests.cs @@ -9,7 +9,7 @@ using ByteSync.Interfaces.Controls.Inventories; using ByteSync.Interfaces.Services.Sessions; using ByteSync.Services.Communications.Transfers.Uploading; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileUploadProcessorTests.cs b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileUploadProcessorTests.cs index 5aa783363..3ade9d653 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileUploadProcessorTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileUploadProcessorTests.cs @@ -7,7 +7,7 @@ using ByteSync.Interfaces.Controls.Inventories; using ByteSync.Interfaces.Services.Sessions; using ByteSync.Services.Communications.Transfers.Uploading; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileUploadWorkerMetricsTests.cs b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileUploadWorkerMetricsTests.cs index e737f62c1..ae127e7fb 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileUploadWorkerMetricsTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileUploadWorkerMetricsTests.cs @@ -7,7 +7,7 @@ using ByteSync.Interfaces.Controls.Communications; using ByteSync.Interfaces.Controls.Communications.Http; using ByteSync.Services.Communications.Transfers.Uploading; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileUploadWorkerTests.cs b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileUploadWorkerTests.cs index a0a676a05..0c1db1ae3 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileUploadWorkerTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileUploadWorkerTests.cs @@ -7,7 +7,7 @@ using ByteSync.Interfaces.Controls.Communications; using ByteSync.Interfaces.Controls.Communications.Http; using ByteSync.Services.Communications.Transfers.Uploading; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileUploaderTests.cs b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileUploaderTests.cs index ffe22359c..2b96147f0 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileUploaderTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/FileUploaderTests.cs @@ -2,7 +2,7 @@ using ByteSync.Interfaces.Controls.Communications; using ByteSync.Interfaces.Controls.Encryptions; using ByteSync.Services.Communications.Transfers.Uploading; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/UploadAttemptTimeoutPolicyTests.cs b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/UploadAttemptTimeoutPolicyTests.cs index a5c485a67..bda501534 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/UploadAttemptTimeoutPolicyTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/UploadAttemptTimeoutPolicyTests.cs @@ -1,5 +1,5 @@ using ByteSync.Services.Communications.Transfers.Uploading; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Services.Communications.Transfers.Uploading; diff --git a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/UploadParallelismManagerTests.cs b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/UploadParallelismManagerTests.cs index e1bec7695..2c1aafcf9 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/UploadParallelismManagerTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/UploadParallelismManagerTests.cs @@ -2,7 +2,7 @@ using ByteSync.Business.Communications.Transfers; using ByteSync.Interfaces.Controls.Communications; using ByteSync.Services.Communications.Transfers.Uploading; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/UploadProgressMonitorTests.cs b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/UploadProgressMonitorTests.cs index c7c0cde95..15350404d 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/UploadProgressMonitorTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Communications/Transfers/Uploading/UploadProgressMonitorTests.cs @@ -6,7 +6,7 @@ using ByteSync.Interfaces.Controls.Communications; using ByteSync.Interfaces.Controls.Inventories; using ByteSync.Services.Communications.Transfers.Uploading; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Comparisons/AtomicActionConsistencyCheckerAccessTests.cs b/tests/ByteSync.Client.UnitTests/Services/Comparisons/AtomicActionConsistencyCheckerAccessTests.cs index cf3575dc2..2d56cb7b5 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Comparisons/AtomicActionConsistencyCheckerAccessTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Comparisons/AtomicActionConsistencyCheckerAccessTests.cs @@ -10,7 +10,7 @@ using ByteSync.Models.FileSystems; using ByteSync.Models.Inventories; using ByteSync.Services.Comparisons; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Comparisons/ContentRepartitionGroupsComputerFactoryTests.cs b/tests/ByteSync.Client.UnitTests/Services/Comparisons/ContentRepartitionGroupsComputerFactoryTests.cs index 4aa0f3495..ce08c989a 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Comparisons/ContentRepartitionGroupsComputerFactoryTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Comparisons/ContentRepartitionGroupsComputerFactoryTests.cs @@ -12,7 +12,7 @@ using ByteSync.Models.Comparisons.Result; using ByteSync.Models.Inventories; using ByteSync.ViewModels.Sessions.Comparisons.Results; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Comparisons/IdentityBuilderTests.cs b/tests/ByteSync.Client.UnitTests/Services/Comparisons/IdentityBuilderTests.cs index 8b09d0a26..702771a25 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Comparisons/IdentityBuilderTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Comparisons/IdentityBuilderTests.cs @@ -12,7 +12,7 @@ using ByteSync.Services.Comparisons; using ByteSync.Services.Inventories; using ByteSync.TestsCommon; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Comparisons/InitialStatusBuilderTests.cs b/tests/ByteSync.Client.UnitTests/Services/Comparisons/InitialStatusBuilderTests.cs index 19459cf6f..c25c2fe40 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Comparisons/InitialStatusBuilderTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Comparisons/InitialStatusBuilderTests.cs @@ -6,7 +6,7 @@ using ByteSync.Models.Inventories; using ByteSync.Services.Comparisons; using ByteSync.TestsCommon; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Services.Comparisons; diff --git a/tests/ByteSync.Client.UnitTests/Services/Comparisons/InventoryComparerIncompletePartsFlatTests.cs b/tests/ByteSync.Client.UnitTests/Services/Comparisons/InventoryComparerIncompletePartsFlatTests.cs index 6221b7cad..13f0def6f 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Comparisons/InventoryComparerIncompletePartsFlatTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Comparisons/InventoryComparerIncompletePartsFlatTests.cs @@ -7,7 +7,7 @@ using ByteSync.Models.FileSystems; using ByteSync.Models.Inventories; using ByteSync.Services.Comparisons; -using FluentAssertions; +using AwesomeAssertions; using ByteSync.TestsCommon; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Comparisons/InventoryComparerPropagateAccessIssuesTests.cs b/tests/ByteSync.Client.UnitTests/Services/Comparisons/InventoryComparerPropagateAccessIssuesTests.cs index 6c44889ba..131b07fb8 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Comparisons/InventoryComparerPropagateAccessIssuesTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Comparisons/InventoryComparerPropagateAccessIssuesTests.cs @@ -8,7 +8,7 @@ using ByteSync.Models.Inventories; using ByteSync.Services.Comparisons; using ByteSync.TestsCommon; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Services.Comparisons; diff --git a/tests/ByteSync.Client.UnitTests/Services/Comparisons/SynchronizationRuleMatcherConditionsMatchTests.cs b/tests/ByteSync.Client.UnitTests/Services/Comparisons/SynchronizationRuleMatcherConditionsMatchTests.cs index b97815e5f..d9008914b 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Comparisons/SynchronizationRuleMatcherConditionsMatchTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Comparisons/SynchronizationRuleMatcherConditionsMatchTests.cs @@ -7,7 +7,7 @@ using ByteSync.Models.Comparisons.Result; using ByteSync.Services.Comparisons; using ByteSync.Services.Comparisons.ConditionMatchers; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Comparisons/SynchronizationRuleMatcherContentTests.cs b/tests/ByteSync.Client.UnitTests/Services/Comparisons/SynchronizationRuleMatcherContentTests.cs index fe7f6509a..a116deceb 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Comparisons/SynchronizationRuleMatcherContentTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Comparisons/SynchronizationRuleMatcherContentTests.cs @@ -7,7 +7,7 @@ using ByteSync.Models.Inventories; using ByteSync.Services.Comparisons; using ByteSync.Services.Comparisons.ConditionMatchers; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Services.Comparisons; diff --git a/tests/ByteSync.Client.UnitTests/Services/Comparisons/SynchronizationRuleMatcherDateTests.cs b/tests/ByteSync.Client.UnitTests/Services/Comparisons/SynchronizationRuleMatcherDateTests.cs index c86858377..29dce8f50 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Comparisons/SynchronizationRuleMatcherDateTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Comparisons/SynchronizationRuleMatcherDateTests.cs @@ -7,7 +7,7 @@ using ByteSync.Models.Inventories; using ByteSync.Services.Comparisons; using ByteSync.Services.Comparisons.ConditionMatchers; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Services.Comparisons; diff --git a/tests/ByteSync.Client.UnitTests/Services/Comparisons/SynchronizationRuleMatcherLocalizeTests.cs b/tests/ByteSync.Client.UnitTests/Services/Comparisons/SynchronizationRuleMatcherLocalizeTests.cs index 57790253c..069f2ea5d 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Comparisons/SynchronizationRuleMatcherLocalizeTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Comparisons/SynchronizationRuleMatcherLocalizeTests.cs @@ -5,7 +5,7 @@ using ByteSync.Models.FileSystems; using ByteSync.Models.Inventories; using ByteSync.Services.Comparisons; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Services.Comparisons; diff --git a/tests/ByteSync.Client.UnitTests/Services/Comparisons/SynchronizationRuleMatcherNameTests.cs b/tests/ByteSync.Client.UnitTests/Services/Comparisons/SynchronizationRuleMatcherNameTests.cs index 9084c11fc..e6f3ba2c1 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Comparisons/SynchronizationRuleMatcherNameTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Comparisons/SynchronizationRuleMatcherNameTests.cs @@ -4,7 +4,7 @@ using ByteSync.Common.Business.Inventories; using ByteSync.Models.Comparisons.Result; using ByteSync.Services.Comparisons.ConditionMatchers; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Services.Comparisons; diff --git a/tests/ByteSync.Client.UnitTests/Services/Comparisons/SynchronizationRuleMatcherPresenceExtendedTests.cs b/tests/ByteSync.Client.UnitTests/Services/Comparisons/SynchronizationRuleMatcherPresenceExtendedTests.cs index 3f12f00c0..4995cd5fa 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Comparisons/SynchronizationRuleMatcherPresenceExtendedTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Comparisons/SynchronizationRuleMatcherPresenceExtendedTests.cs @@ -7,7 +7,7 @@ using ByteSync.Models.Inventories; using ByteSync.Services.Comparisons; using ByteSync.Services.Comparisons.ConditionMatchers; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Services.Comparisons; diff --git a/tests/ByteSync.Client.UnitTests/Services/Comparisons/SynchronizationRuleMatcherPresenceTests.cs b/tests/ByteSync.Client.UnitTests/Services/Comparisons/SynchronizationRuleMatcherPresenceTests.cs index 7587229d7..a7d6dc385 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Comparisons/SynchronizationRuleMatcherPresenceTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Comparisons/SynchronizationRuleMatcherPresenceTests.cs @@ -5,7 +5,7 @@ using ByteSync.Models.FileSystems; using ByteSync.Models.Inventories; using ByteSync.Services.Comparisons; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Services.Comparisons; diff --git a/tests/ByteSync.Client.UnitTests/Services/Comparisons/SynchronizationRuleMatcherSizeTests.cs b/tests/ByteSync.Client.UnitTests/Services/Comparisons/SynchronizationRuleMatcherSizeTests.cs index 9cf6b6855..1b93ba506 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Comparisons/SynchronizationRuleMatcherSizeTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Comparisons/SynchronizationRuleMatcherSizeTests.cs @@ -8,7 +8,7 @@ using ByteSync.Models.Inventories; using ByteSync.Services.Comparisons; using ByteSync.Services.Comparisons.ConditionMatchers; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Services.Comparisons; diff --git a/tests/ByteSync.Client.UnitTests/Services/Configurations/LocalApplicationDataManagerTests.cs b/tests/ByteSync.Client.UnitTests/Services/Configurations/LocalApplicationDataManagerTests.cs index ba2faf57b..9feb6a684 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Configurations/LocalApplicationDataManagerTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Configurations/LocalApplicationDataManagerTests.cs @@ -5,7 +5,7 @@ using ByteSync.Common.Helpers; using ByteSync.Interfaces.Controls.Applications; using ByteSync.Services.Configurations; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; using ByteSync.TestsCommon; diff --git a/tests/ByteSync.Client.UnitTests/Services/Converters/BooleanConverterTests.cs b/tests/ByteSync.Client.UnitTests/Services/Converters/BooleanConverterTests.cs index edc17232e..9476f6fc5 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Converters/BooleanConverterTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Converters/BooleanConverterTests.cs @@ -1,6 +1,6 @@ using System.Globalization; using ByteSync.Services.Converters; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Services.Converters; diff --git a/tests/ByteSync.Client.UnitTests/Services/Converters/DeploymentModeToStringConverterTests.cs b/tests/ByteSync.Client.UnitTests/Services/Converters/DeploymentModeToStringConverterTests.cs index 5db886d68..cdcac2c60 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Converters/DeploymentModeToStringConverterTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Converters/DeploymentModeToStringConverterTests.cs @@ -6,7 +6,7 @@ using ByteSync.Interfaces.Services.Localizations; using ByteSync.Services; using ByteSync.Services.Converters; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Converters/IntToLetterConverterTests.cs b/tests/ByteSync.Client.UnitTests/Services/Converters/IntToLetterConverterTests.cs index 5c683425a..bf2378984 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Converters/IntToLetterConverterTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Converters/IntToLetterConverterTests.cs @@ -1,6 +1,6 @@ using System.Globalization; using ByteSync.Services.Converters; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Services.Converters; diff --git a/tests/ByteSync.Client.UnitTests/Services/Converters/ItemCountToLocalizedTextConverterTests.cs b/tests/ByteSync.Client.UnitTests/Services/Converters/ItemCountToLocalizedTextConverterTests.cs index 4be99694b..0fbda1de0 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Converters/ItemCountToLocalizedTextConverterTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Converters/ItemCountToLocalizedTextConverterTests.cs @@ -1,7 +1,7 @@ using System.Globalization; using ByteSync.Interfaces.Services.Localizations; using ByteSync.Services.Converters; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Encryptions/TestDataEncrypter.cs b/tests/ByteSync.Client.UnitTests/Services/Encryptions/TestDataEncrypter.cs index 17b1a2ae7..14f6d8637 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Encryptions/TestDataEncrypter.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Encryptions/TestDataEncrypter.cs @@ -5,7 +5,7 @@ using ByteSync.Interfaces.Repositories; using ByteSync.Services.Encryptions; using ByteSync.TestsCommon; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Inventories/DataInventoryRunnerTests.cs b/tests/ByteSync.Client.UnitTests/Services/Inventories/DataInventoryRunnerTests.cs index 190bb2163..e7edd5142 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Inventories/DataInventoryRunnerTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Inventories/DataInventoryRunnerTests.cs @@ -11,7 +11,7 @@ using ByteSync.Interfaces.Repositories; using ByteSync.Interfaces.Services.Sessions; using ByteSync.Services.Inventories; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Inventories/DataNodeCodeGeneratorTests.cs b/tests/ByteSync.Client.UnitTests/Services/Inventories/DataNodeCodeGeneratorTests.cs index c56a868ce..f7e1c004a 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Inventories/DataNodeCodeGeneratorTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Inventories/DataNodeCodeGeneratorTests.cs @@ -6,7 +6,7 @@ using ByteSync.Interfaces.Services.Communications; using ByteSync.Repositories; using ByteSync.Services.Inventories; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Inventories/DataNodeServiceTests.cs b/tests/ByteSync.Client.UnitTests/Services/Inventories/DataNodeServiceTests.cs index 1a3557c1b..4dcf82a21 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Inventories/DataNodeServiceTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Inventories/DataNodeServiceTests.cs @@ -11,7 +11,7 @@ using ByteSync.Interfaces.Services.Communications; using ByteSync.Interfaces.Services.Sessions; using ByteSync.Services.Inventories; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Inventories/DataSourceCheckerTests.cs b/tests/ByteSync.Client.UnitTests/Services/Inventories/DataSourceCheckerTests.cs index 07b07708b..21f0ad222 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Inventories/DataSourceCheckerTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Inventories/DataSourceCheckerTests.cs @@ -6,7 +6,7 @@ using ByteSync.Interfaces.Dialogs; using ByteSync.Services.Inventories; using ByteSync.ViewModels.Misc; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Inventories/DataSourceCodeGeneratorTests.cs b/tests/ByteSync.Client.UnitTests/Services/Inventories/DataSourceCodeGeneratorTests.cs index 11b8b88bb..6727b18fb 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Inventories/DataSourceCodeGeneratorTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Inventories/DataSourceCodeGeneratorTests.cs @@ -4,7 +4,7 @@ using ByteSync.Interfaces.Repositories; using ByteSync.Repositories; using ByteSync.Services.Inventories; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Inventories/DataSourceServiceTests.cs b/tests/ByteSync.Client.UnitTests/Services/Inventories/DataSourceServiceTests.cs index 378d2ca22..6fd0071fb 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Inventories/DataSourceServiceTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Inventories/DataSourceServiceTests.cs @@ -10,7 +10,7 @@ using ByteSync.Interfaces.Services.Communications; using ByteSync.Interfaces.Services.Sessions; using ByteSync.Services.Inventories; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Inventories/FileSystemInspectorTests.cs b/tests/ByteSync.Client.UnitTests/Services/Inventories/FileSystemInspectorTests.cs index dc31fee82..8ab0de3ce 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Inventories/FileSystemInspectorTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Inventories/FileSystemInspectorTests.cs @@ -3,7 +3,7 @@ using ByteSync.Interfaces.Controls.Inventories; using ByteSync.Services.Inventories; using ByteSync.TestsCommon; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Inventories/InventoryBuilderInspectorTests.cs b/tests/ByteSync.Client.UnitTests/Services/Inventories/InventoryBuilderInspectorTests.cs index b0ce26cf4..8719a91c6 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Inventories/InventoryBuilderInspectorTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Inventories/InventoryBuilderInspectorTests.cs @@ -9,7 +9,7 @@ using ByteSync.Models.Inventories; using ByteSync.Services.Inventories; using ByteSync.TestsCommon; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Inventories/InventoryBuilderPublicTests.cs b/tests/ByteSync.Client.UnitTests/Services/Inventories/InventoryBuilderPublicTests.cs index 2826a4b08..7bfa4de87 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Inventories/InventoryBuilderPublicTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Inventories/InventoryBuilderPublicTests.cs @@ -9,7 +9,7 @@ using ByteSync.Interfaces.Controls.Inventories; using ByteSync.Services.Inventories; using ByteSync.TestsCommon; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Inventories/InventoryFinishedServiceTests.cs b/tests/ByteSync.Client.UnitTests/Services/Inventories/InventoryFinishedServiceTests.cs index 6acfc0f22..58df52dc6 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Inventories/InventoryFinishedServiceTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Inventories/InventoryFinishedServiceTests.cs @@ -11,7 +11,7 @@ using ByteSync.Interfaces.Services.Sessions; using ByteSync.Models.Inventories; using ByteSync.Services.Inventories; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Inventories/InventoryLoaderIncompleteFlagTests.cs b/tests/ByteSync.Client.UnitTests/Services/Inventories/InventoryLoaderIncompleteFlagTests.cs index e1a3571e5..58391d691 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Inventories/InventoryLoaderIncompleteFlagTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Inventories/InventoryLoaderIncompleteFlagTests.cs @@ -6,7 +6,7 @@ using ByteSync.Models.FileSystems; using ByteSync.Models.Inventories; using ByteSync.Services.Inventories; -using FluentAssertions; +using AwesomeAssertions; using ByteSync.TestsCommon; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Inventories/InventoryServiceTests.cs b/tests/ByteSync.Client.UnitTests/Services/Inventories/InventoryServiceTests.cs index 579e5bdf7..fdd51830a 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Inventories/InventoryServiceTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Inventories/InventoryServiceTests.cs @@ -7,7 +7,7 @@ using ByteSync.Interfaces.Repositories; using ByteSync.Interfaces.Services.Sessions; using ByteSync.Services.Inventories; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Inventories/InventoryStatisticsServiceTests.cs b/tests/ByteSync.Client.UnitTests/Services/Inventories/InventoryStatisticsServiceTests.cs index 9c6b2625f..52128280d 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Inventories/InventoryStatisticsServiceTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Inventories/InventoryStatisticsServiceTests.cs @@ -12,7 +12,7 @@ using ByteSync.Models.FileSystems; using ByteSync.Models.Inventories; using ByteSync.Services.Inventories; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Inventories/NoiseFileDetectorTests.cs b/tests/ByteSync.Client.UnitTests/Services/Inventories/NoiseFileDetectorTests.cs index 21464abbc..bd005ca34 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Inventories/NoiseFileDetectorTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Inventories/NoiseFileDetectorTests.cs @@ -1,7 +1,7 @@ using System.Text.Json; using ByteSync.Common.Business.Misc; using ByteSync.Services.Inventories; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Services.Inventories; diff --git a/tests/ByteSync.Client.UnitTests/Services/Inventories/PosixFileTypeClassifierTests.cs b/tests/ByteSync.Client.UnitTests/Services/Inventories/PosixFileTypeClassifierTests.cs index 3fe67199a..c4ed3c532 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Inventories/PosixFileTypeClassifierTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Inventories/PosixFileTypeClassifierTests.cs @@ -2,7 +2,7 @@ using ByteSync.Business.Inventories; using ByteSync.Services.Inventories; using ByteSync.TestsCommon; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Services.Inventories; diff --git a/tests/ByteSync.Client.UnitTests/Services/Misc/Factories/PolicyFactoryTests.cs b/tests/ByteSync.Client.UnitTests/Services/Misc/Factories/PolicyFactoryTests.cs index c49792503..a3212b2eb 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Misc/Factories/PolicyFactoryTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Misc/Factories/PolicyFactoryTests.cs @@ -1,7 +1,7 @@ using System.Net; using ByteSync.Exceptions; using ByteSync.Services.Misc.Factories; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Ratings/RatingPromptConfigurationProviderTests.cs b/tests/ByteSync.Client.UnitTests/Services/Ratings/RatingPromptConfigurationProviderTests.cs index 0e079aa11..57bc33542 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Ratings/RatingPromptConfigurationProviderTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Ratings/RatingPromptConfigurationProviderTests.cs @@ -1,7 +1,7 @@ using System.Text; using ByteSync.Common.Business.Misc; using ByteSync.Services.Ratings; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Configuration; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Ratings/RatingPromptServiceTests.cs b/tests/ByteSync.Client.UnitTests/Services/Ratings/RatingPromptServiceTests.cs index 7d99e2b06..1015d06cd 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Ratings/RatingPromptServiceTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Ratings/RatingPromptServiceTests.cs @@ -15,7 +15,7 @@ using ByteSync.Services.Ratings; using ByteSync.ViewModels.Misc; using ByteSync.ViewModels.Ratings; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Repositories/SessionMembersRepositoryTests.cs b/tests/ByteSync.Client.UnitTests/Services/Repositories/SessionMembersRepositoryTests.cs index d37d08d89..ee14b2bf7 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Repositories/SessionMembersRepositoryTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Repositories/SessionMembersRepositoryTests.cs @@ -4,7 +4,7 @@ using ByteSync.Interfaces.Repositories; using ByteSync.Interfaces.Services.Communications; using ByteSync.Repositories; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Sessions/Connecting/CreateSessionServiceTests.cs b/tests/ByteSync.Client.UnitTests/Services/Sessions/Connecting/CreateSessionServiceTests.cs index ef3f6f544..d571fe8e0 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Sessions/Connecting/CreateSessionServiceTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Sessions/Connecting/CreateSessionServiceTests.cs @@ -14,7 +14,7 @@ using ByteSync.Interfaces.Repositories; using ByteSync.Interfaces.Services.Sessions.Connecting; using ByteSync.Services.Sessions; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Sessions/DataPartIndexerTests.cs b/tests/ByteSync.Client.UnitTests/Services/Sessions/DataPartIndexerTests.cs index c5e458e8e..5c83aeef9 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Sessions/DataPartIndexerTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Sessions/DataPartIndexerTests.cs @@ -3,7 +3,7 @@ using ByteSync.Common.Business.Inventories; using ByteSync.Models.Inventories; using ByteSync.Services.Sessions; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Services.Sessions; diff --git a/tests/ByteSync.Client.UnitTests/Services/Sessions/SynchronizationServiceTests.cs b/tests/ByteSync.Client.UnitTests/Services/Sessions/SynchronizationServiceTests.cs index b8706c214..6e38ed251 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Sessions/SynchronizationServiceTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Sessions/SynchronizationServiceTests.cs @@ -11,7 +11,7 @@ using ByteSync.Interfaces.Factories; using ByteSync.Interfaces.Services.Sessions; using ByteSync.Services.Synchronizations; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Synchronizations/DeltaByteShiftToleranceTests.cs b/tests/ByteSync.Client.UnitTests/Services/Synchronizations/DeltaByteShiftToleranceTests.cs index 300094616..0ff70d2dd 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Synchronizations/DeltaByteShiftToleranceTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Synchronizations/DeltaByteShiftToleranceTests.cs @@ -2,7 +2,7 @@ using FastRsync.Core; using FastRsync.Delta; using FastRsync.Signature; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Services.Synchronizations; diff --git a/tests/ByteSync.Client.UnitTests/Services/Synchronizations/SynchronizationActionServerInformerTests.cs b/tests/ByteSync.Client.UnitTests/Services/Synchronizations/SynchronizationActionServerInformerTests.cs index 0e7db9606..aba06acc7 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Synchronizations/SynchronizationActionServerInformerTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Synchronizations/SynchronizationActionServerInformerTests.cs @@ -4,7 +4,7 @@ using ByteSync.Interfaces.Controls.Synchronizations; using ByteSync.Interfaces.Services.Sessions; using ByteSync.Services.Synchronizations; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Synchronizations/SynchronizationRulesServiceTests.cs b/tests/ByteSync.Client.UnitTests/Services/Synchronizations/SynchronizationRulesServiceTests.cs index 3c18276ad..a5251aacb 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Synchronizations/SynchronizationRulesServiceTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Synchronizations/SynchronizationRulesServiceTests.cs @@ -8,7 +8,7 @@ using ByteSync.Interfaces.Services.Sessions; using ByteSync.Models.Comparisons.Result; using ByteSync.Services.Synchronizations; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/Themes/ThemeBuilderTests.cs b/tests/ByteSync.Client.UnitTests/Services/Themes/ThemeBuilderTests.cs index 2c9e396bb..e35e31c3e 100644 --- a/tests/ByteSync.Client.UnitTests/Services/Themes/ThemeBuilderTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/Themes/ThemeBuilderTests.cs @@ -1,6 +1,6 @@ using ByteSync.Business.Themes; using ByteSync.Services.Themes; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.Services.Themes; diff --git a/tests/ByteSync.Client.UnitTests/Services/TimeTracking/SynchronizationDataTrackingStrategyTests.cs b/tests/ByteSync.Client.UnitTests/Services/TimeTracking/SynchronizationDataTrackingStrategyTests.cs index cf0dc9910..0cb33e7bf 100644 --- a/tests/ByteSync.Client.UnitTests/Services/TimeTracking/SynchronizationDataTrackingStrategyTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/TimeTracking/SynchronizationDataTrackingStrategyTests.cs @@ -2,7 +2,7 @@ using ByteSync.Business.Synchronizations; using ByteSync.Interfaces.Controls.Synchronizations; using ByteSync.Services.TimeTracking; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Reactive.Testing; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/Services/TimeTracking/TimeTrackingComputerTests.cs b/tests/ByteSync.Client.UnitTests/Services/TimeTracking/TimeTrackingComputerTests.cs index e9ed935cb..fd8856c24 100644 --- a/tests/ByteSync.Client.UnitTests/Services/TimeTracking/TimeTrackingComputerTests.cs +++ b/tests/ByteSync.Client.UnitTests/Services/TimeTracking/TimeTrackingComputerTests.cs @@ -4,7 +4,7 @@ using ByteSync.Business.Misc; using ByteSync.Interfaces.Controls.TimeTracking; using ByteSync.Services.TimeTracking; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Reactive.Testing; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/TestUtilities/Mine/TestRsa.cs b/tests/ByteSync.Client.UnitTests/TestUtilities/Mine/TestRsa.cs index b23dd0fe1..921d102b2 100644 --- a/tests/ByteSync.Client.UnitTests/TestUtilities/Mine/TestRsa.cs +++ b/tests/ByteSync.Client.UnitTests/TestUtilities/Mine/TestRsa.cs @@ -1,6 +1,6 @@ using System.Security.Cryptography; using System.Text; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.TestUtilities.Mine; diff --git a/tests/ByteSync.Client.UnitTests/Uploading/AdaptiveUploadControllerTests.cs b/tests/ByteSync.Client.UnitTests/Uploading/AdaptiveUploadControllerTests.cs index e59dbc064..3f5da4cf2 100644 --- a/tests/ByteSync.Client.UnitTests/Uploading/AdaptiveUploadControllerTests.cs +++ b/tests/ByteSync.Client.UnitTests/Uploading/AdaptiveUploadControllerTests.cs @@ -4,7 +4,7 @@ using ByteSync.Common.Business.Sessions; using ByteSync.Interfaces.Services.Sessions; using ByteSync.Services.Communications.Transfers.Uploading; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/ViewModels/Announcements/AnnouncementViewModelTests.cs b/tests/ByteSync.Client.UnitTests/ViewModels/Announcements/AnnouncementViewModelTests.cs index ed1e798d5..2e0bb3c11 100644 --- a/tests/ByteSync.Client.UnitTests/ViewModels/Announcements/AnnouncementViewModelTests.cs +++ b/tests/ByteSync.Client.UnitTests/ViewModels/Announcements/AnnouncementViewModelTests.cs @@ -10,7 +10,7 @@ using ByteSync.TestsCommon; using ByteSync.ViewModels.Announcements; using DynamicData; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/ViewModels/Headers/HeaderViewModelTests.cs b/tests/ByteSync.Client.UnitTests/ViewModels/Headers/HeaderViewModelTests.cs index 0325147c1..a371dac3d 100644 --- a/tests/ByteSync.Client.UnitTests/ViewModels/Headers/HeaderViewModelTests.cs +++ b/tests/ByteSync.Client.UnitTests/ViewModels/Headers/HeaderViewModelTests.cs @@ -10,7 +10,7 @@ using ByteSync.Interfaces.Services.Localizations; using ByteSync.ViewModels.Headers; using DynamicData; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/ViewModels/Headers/UpdateDetailsViewModelTests.cs b/tests/ByteSync.Client.UnitTests/ViewModels/Headers/UpdateDetailsViewModelTests.cs index 28640b166..601dd446d 100644 --- a/tests/ByteSync.Client.UnitTests/ViewModels/Headers/UpdateDetailsViewModelTests.cs +++ b/tests/ByteSync.Client.UnitTests/ViewModels/Headers/UpdateDetailsViewModelTests.cs @@ -15,7 +15,7 @@ using ByteSync.ViewModels.Headers; using ByteSync.ViewModels.Misc; using DynamicData; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/ViewModels/Misc/FlyoutContainerViewModelTests.cs b/tests/ByteSync.Client.UnitTests/ViewModels/Misc/FlyoutContainerViewModelTests.cs index 9d7be9286..63588567a 100644 --- a/tests/ByteSync.Client.UnitTests/ViewModels/Misc/FlyoutContainerViewModelTests.cs +++ b/tests/ByteSync.Client.UnitTests/ViewModels/Misc/FlyoutContainerViewModelTests.cs @@ -4,7 +4,7 @@ using ByteSync.Interfaces.Factories.ViewModels; using ByteSync.Interfaces.Services.Localizations; using ByteSync.ViewModels.Misc; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Comparisons/Actions/AtomicActionEditViewModelTests.cs b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Comparisons/Actions/AtomicActionEditViewModelTests.cs index 264316e62..aaa2d99d1 100644 --- a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Comparisons/Actions/AtomicActionEditViewModelTests.cs +++ b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Comparisons/Actions/AtomicActionEditViewModelTests.cs @@ -10,7 +10,7 @@ using ByteSync.Interfaces.Services.Sessions; using ByteSync.Models.Inventories; using ByteSync.ViewModels.Sessions.Comparisons.Actions; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.ViewModels.Sessions.Comparisons.Actions; diff --git a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Comparisons/Actions/SynchronizationRuleGlobalViewModelTests.cs b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Comparisons/Actions/SynchronizationRuleGlobalViewModelTests.cs index f3fe822f9..260919e97 100644 --- a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Comparisons/Actions/SynchronizationRuleGlobalViewModelTests.cs +++ b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Comparisons/Actions/SynchronizationRuleGlobalViewModelTests.cs @@ -21,7 +21,7 @@ using ByteSync.Models.Inventories; using ByteSync.Services; using ByteSync.ViewModels.Sessions.Comparisons.Actions; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Comparisons/Actions/TargetedActionGlobalViewModelTests.cs b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Comparisons/Actions/TargetedActionGlobalViewModelTests.cs index b74bfc271..d590841be 100644 --- a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Comparisons/Actions/TargetedActionGlobalViewModelTests.cs +++ b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Comparisons/Actions/TargetedActionGlobalViewModelTests.cs @@ -22,7 +22,7 @@ using ByteSync.Models.Inventories; using ByteSync.TestsCommon; using ByteSync.ViewModels.Sessions.Comparisons.Actions; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Comparisons/Results/ComparisonResultViewModelTests.cs b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Comparisons/Results/ComparisonResultViewModelTests.cs index 7c2fffb4f..d7afe2eed 100644 --- a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Comparisons/Results/ComparisonResultViewModelTests.cs +++ b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Comparisons/Results/ComparisonResultViewModelTests.cs @@ -23,7 +23,7 @@ using ByteSync.Repositories; using ByteSync.ViewModels.Sessions.Comparisons.Results; using ByteSync.Views.Misc; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Comparisons/Results/ContentIdentityViewModelTests.cs b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Comparisons/Results/ContentIdentityViewModelTests.cs index 03c52e9b0..7319b1e06 100644 --- a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Comparisons/Results/ContentIdentityViewModelTests.cs +++ b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Comparisons/Results/ContentIdentityViewModelTests.cs @@ -19,7 +19,7 @@ using ByteSync.Repositories; using ByteSync.ViewModels.Sessions.Comparisons.Results; using ByteSync.ViewModels.Sessions.Comparisons.Results.Misc; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Comparisons/Results/ContentRepartitionViewModelLetteringTests.cs b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Comparisons/Results/ContentRepartitionViewModelLetteringTests.cs index c4401df49..a712cc715 100644 --- a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Comparisons/Results/ContentRepartitionViewModelLetteringTests.cs +++ b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Comparisons/Results/ContentRepartitionViewModelLetteringTests.cs @@ -12,7 +12,7 @@ using ByteSync.Services.Comparisons; using ByteSync.ViewModels.Sessions.Comparisons.Results; using ByteSync.ViewModels.Sessions.Comparisons.Results.Misc; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace ByteSync.Client.UnitTests.ViewModels.Sessions.Comparisons.Results; diff --git a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Comparisons/Results/Misc/ComparisonItemViewModelTests.cs b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Comparisons/Results/Misc/ComparisonItemViewModelTests.cs index d8d8becbe..33fc178ad 100644 --- a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Comparisons/Results/Misc/ComparisonItemViewModelTests.cs +++ b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Comparisons/Results/Misc/ComparisonItemViewModelTests.cs @@ -20,7 +20,7 @@ using ByteSync.Repositories; using ByteSync.ViewModels.Sessions.Comparisons.Results; using ByteSync.ViewModels.Sessions.Comparisons.Results.Misc; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Comparisons/Results/SynchronizationRuleSummaryViewModelTests.cs b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Comparisons/Results/SynchronizationRuleSummaryViewModelTests.cs index e923c7dc9..ddf7b226b 100644 --- a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Comparisons/Results/SynchronizationRuleSummaryViewModelTests.cs +++ b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Comparisons/Results/SynchronizationRuleSummaryViewModelTests.cs @@ -20,7 +20,7 @@ using ByteSync.Services.Comparisons.DescriptionBuilders; using ByteSync.ViewModels.Sessions.Comparisons.Actions; using ByteSync.ViewModels.Sessions.Comparisons.Results; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/DataNodes/DataNodeHeaderViewModelTests.cs b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/DataNodes/DataNodeHeaderViewModelTests.cs index dd3dbedf3..525941cf9 100644 --- a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/DataNodes/DataNodeHeaderViewModelTests.cs +++ b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/DataNodes/DataNodeHeaderViewModelTests.cs @@ -13,7 +13,7 @@ using ByteSync.Interfaces.Services.Sessions; using ByteSync.ViewModels.Misc; using ByteSync.ViewModels.Sessions.DataNodes; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/DataNodes/DataNodeSourcesViewModelTests.cs b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/DataNodes/DataNodeSourcesViewModelTests.cs index 9c1589d17..437e2de21 100644 --- a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/DataNodes/DataNodeSourcesViewModelTests.cs +++ b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/DataNodes/DataNodeSourcesViewModelTests.cs @@ -9,7 +9,7 @@ using ByteSync.Interfaces.Services.Sessions; using ByteSync.ViewModels.Sessions.DataNodes; using DynamicData; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; using ByteSync.TestsCommon; diff --git a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/DataNodes/DataNodeViewModelTests.cs b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/DataNodes/DataNodeViewModelTests.cs index 32783d511..d5939186b 100644 --- a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/DataNodes/DataNodeViewModelTests.cs +++ b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/DataNodes/DataNodeViewModelTests.cs @@ -16,7 +16,7 @@ using ByteSync.Interfaces.Services.Sessions; using ByteSync.ViewModels.Sessions.DataNodes; using DynamicData; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Inventories/InventoryDeltaGenerationViewModelTests.cs b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Inventories/InventoryDeltaGenerationViewModelTests.cs index b2a6c2f00..c524c2ec7 100644 --- a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Inventories/InventoryDeltaGenerationViewModelTests.cs +++ b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Inventories/InventoryDeltaGenerationViewModelTests.cs @@ -6,7 +6,7 @@ using ByteSync.Interfaces.Controls.Inventories; using ByteSync.Interfaces.Controls.Themes; using ByteSync.ViewModels.Sessions.Inventories; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Inventories/InventoryGlobalStatusViewModelTests.cs b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Inventories/InventoryGlobalStatusViewModelTests.cs index e9236eb74..409c596bc 100644 --- a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Inventories/InventoryGlobalStatusViewModelTests.cs +++ b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Inventories/InventoryGlobalStatusViewModelTests.cs @@ -13,7 +13,7 @@ using ByteSync.Interfaces.Services.Sessions; using ByteSync.ViewModels.Misc; using ByteSync.ViewModels.Sessions.Inventories; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Inventories/InventoryLocalIdentificationViewModelTests.cs b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Inventories/InventoryLocalIdentificationViewModelTests.cs index 1c73841f9..383e69400 100644 --- a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Inventories/InventoryLocalIdentificationViewModelTests.cs +++ b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Inventories/InventoryLocalIdentificationViewModelTests.cs @@ -6,7 +6,7 @@ using ByteSync.Interfaces.Controls.Inventories; using ByteSync.Interfaces.Controls.Themes; using ByteSync.ViewModels.Sessions.Inventories; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Inventories/InventoryLocalStatusViewModelTests.cs b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Inventories/InventoryLocalStatusViewModelTests.cs index fa182ec8c..9705eebf1 100644 --- a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Inventories/InventoryLocalStatusViewModelTests.cs +++ b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Inventories/InventoryLocalStatusViewModelTests.cs @@ -5,7 +5,7 @@ using ByteSync.Interfaces.Controls.TimeTracking; using ByteSync.Interfaces.Services.Sessions; using ByteSync.ViewModels.Sessions.Inventories; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Inventories/InventoryMainViewModelTests.cs b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Inventories/InventoryMainViewModelTests.cs index 3acb4b359..2f166e879 100644 --- a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Inventories/InventoryMainViewModelTests.cs +++ b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Inventories/InventoryMainViewModelTests.cs @@ -1,7 +1,7 @@ using ByteSync.Business.Inventories; using ByteSync.Interfaces.Controls.Inventories; using ByteSync.ViewModels.Sessions.Inventories; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Managing/SessionSettingsEditViewModelTests.cs b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Managing/SessionSettingsEditViewModelTests.cs index 78a888631..64da5d466 100644 --- a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Managing/SessionSettingsEditViewModelTests.cs +++ b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Managing/SessionSettingsEditViewModelTests.cs @@ -8,7 +8,7 @@ using ByteSync.Interfaces.Services.Localizations; using ByteSync.Interfaces.Services.Sessions; using ByteSync.ViewModels.Sessions.Managing; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Synchronizations/SynchronizationBeforeStartViewModelTests.cs b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Synchronizations/SynchronizationBeforeStartViewModelTests.cs index 6efd89451..b37d5d9c0 100644 --- a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Synchronizations/SynchronizationBeforeStartViewModelTests.cs +++ b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Synchronizations/SynchronizationBeforeStartViewModelTests.cs @@ -17,7 +17,7 @@ using ByteSync.ViewModels.Misc; using ByteSync.ViewModels.Sessions.Synchronizations; using DynamicData; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Synchronizations/SynchronizationConfirmationViewModelTests.cs b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Synchronizations/SynchronizationConfirmationViewModelTests.cs index 66deca38d..8259b6b44 100644 --- a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Synchronizations/SynchronizationConfirmationViewModelTests.cs +++ b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Synchronizations/SynchronizationConfirmationViewModelTests.cs @@ -9,7 +9,7 @@ using ByteSync.Interfaces.Services.Localizations; using ByteSync.TestsCommon; using ByteSync.ViewModels.Sessions.Synchronizations; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Synchronizations/SynchronizationMainStatusViewModelTests.cs b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Synchronizations/SynchronizationMainStatusViewModelTests.cs index 7e978573e..eab0df48b 100644 --- a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Synchronizations/SynchronizationMainStatusViewModelTests.cs +++ b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Synchronizations/SynchronizationMainStatusViewModelTests.cs @@ -12,7 +12,7 @@ using ByteSync.TestsCommon; using ByteSync.ViewModels.Misc; using ByteSync.ViewModels.Sessions.Synchronizations; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Synchronizations/SynchronizationStatisticsViewModelTests.cs b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Synchronizations/SynchronizationStatisticsViewModelTests.cs index 263d9ec45..026eeef07 100644 --- a/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Synchronizations/SynchronizationStatisticsViewModelTests.cs +++ b/tests/ByteSync.Client.UnitTests/ViewModels/Sessions/Synchronizations/SynchronizationStatisticsViewModelTests.cs @@ -11,7 +11,7 @@ using ByteSync.TestsCommon; using ByteSync.ViewModels.Sessions.Synchronizations; using DynamicData; -using FluentAssertions; +using AwesomeAssertions; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Client.UnitTests/ViewModels/TrustedNetworks/AddTrustedClientViewModelTests.cs b/tests/ByteSync.Client.UnitTests/ViewModels/TrustedNetworks/AddTrustedClientViewModelTests.cs index a95738399..0b901f777 100644 --- a/tests/ByteSync.Client.UnitTests/ViewModels/TrustedNetworks/AddTrustedClientViewModelTests.cs +++ b/tests/ByteSync.Client.UnitTests/ViewModels/TrustedNetworks/AddTrustedClientViewModelTests.cs @@ -10,7 +10,7 @@ using ByteSync.Interfaces.Controls.Communications; using ByteSync.ViewModels.Misc; using ByteSync.ViewModels.TrustedNetworks; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; using NUnit.Framework; diff --git a/tests/ByteSync.Common.Tests/Business/EndPoints/PublicKeyCheckDataTests.cs b/tests/ByteSync.Common.Tests/Business/EndPoints/PublicKeyCheckDataTests.cs index 5753a8b12..3be6828a3 100644 --- a/tests/ByteSync.Common.Tests/Business/EndPoints/PublicKeyCheckDataTests.cs +++ b/tests/ByteSync.Common.Tests/Business/EndPoints/PublicKeyCheckDataTests.cs @@ -1,6 +1,6 @@ using ByteSync.Common.Business.EndPoints; using ByteSync.Common.Business.Versions; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace TestingCommon.Business.EndPoints; diff --git a/tests/ByteSync.Common.Tests/Business/Versions/ProtocolVersionTests.cs b/tests/ByteSync.Common.Tests/Business/Versions/ProtocolVersionTests.cs index fdd5425ab..c03cf2a46 100644 --- a/tests/ByteSync.Common.Tests/Business/Versions/ProtocolVersionTests.cs +++ b/tests/ByteSync.Common.Tests/Business/Versions/ProtocolVersionTests.cs @@ -1,5 +1,5 @@ using ByteSync.Common.Business.Versions; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace TestingCommon.Business.Versions; diff --git a/tests/ByteSync.Common.Tests/ByteSync.Common.Tests.csproj b/tests/ByteSync.Common.Tests/ByteSync.Common.Tests.csproj index d4f1a4148..31d409944 100644 --- a/tests/ByteSync.Common.Tests/ByteSync.Common.Tests.csproj +++ b/tests/ByteSync.Common.Tests/ByteSync.Common.Tests.csproj @@ -8,7 +8,7 @@ - + diff --git a/tests/ByteSync.Common.Tests/Helpers/DebugUtilsTests.cs b/tests/ByteSync.Common.Tests/Helpers/DebugUtilsTests.cs index 508b79aed..518b6a7bf 100644 --- a/tests/ByteSync.Common.Tests/Helpers/DebugUtilsTests.cs +++ b/tests/ByteSync.Common.Tests/Helpers/DebugUtilsTests.cs @@ -1,4 +1,4 @@ -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; using ByteSync.Common.Helpers; diff --git a/tests/ByteSync.Common.Tests/Helpers/RandomUtilsTests.cs b/tests/ByteSync.Common.Tests/Helpers/RandomUtilsTests.cs index f09765a1d..13f1a3432 100644 --- a/tests/ByteSync.Common.Tests/Helpers/RandomUtilsTests.cs +++ b/tests/ByteSync.Common.Tests/Helpers/RandomUtilsTests.cs @@ -1,5 +1,5 @@ using ByteSync.Common.Helpers; -using FluentAssertions; +using AwesomeAssertions; using NUnit.Framework; namespace TestingCommon.Helpers; diff --git a/tests/ByteSync.Functions.IntegrationTests/ByteSync.Functions.IntegrationTests.csproj b/tests/ByteSync.Functions.IntegrationTests/ByteSync.Functions.IntegrationTests.csproj index 765adb429..dbb14f528 100644 --- a/tests/ByteSync.Functions.IntegrationTests/ByteSync.Functions.IntegrationTests.csproj +++ b/tests/ByteSync.Functions.IntegrationTests/ByteSync.Functions.IntegrationTests.csproj @@ -14,7 +14,7 @@ - + diff --git a/tests/ByteSync.Functions.IntegrationTests/End2End/E2E_Auth_Session_Tests.cs b/tests/ByteSync.Functions.IntegrationTests/End2End/E2E_Auth_Session_Tests.cs index d410541c4..203abe8c9 100644 --- a/tests/ByteSync.Functions.IntegrationTests/End2End/E2E_Auth_Session_Tests.cs +++ b/tests/ByteSync.Functions.IntegrationTests/End2End/E2E_Auth_Session_Tests.cs @@ -6,7 +6,7 @@ using ByteSync.Common.Business.Sessions.Cloud; using ByteSync.Common.Business.Sessions.Cloud.Connections; using ByteSync.Common.Controls.Json; -using FluentAssertions; +using AwesomeAssertions; using ByteSync.Functions.IntegrationTests.TestHelpers; namespace ByteSync.Functions.IntegrationTests.End2End; diff --git a/tests/ByteSync.Functions.IntegrationTests/End2End/E2E_Environment_Setup.cs b/tests/ByteSync.Functions.IntegrationTests/End2End/E2E_Environment_Setup.cs index 0b6788fd2..b74b76651 100644 --- a/tests/ByteSync.Functions.IntegrationTests/End2End/E2E_Environment_Setup.cs +++ b/tests/ByteSync.Functions.IntegrationTests/End2End/E2E_Environment_Setup.cs @@ -1,6 +1,6 @@ using System.Diagnostics; using DotNet.Testcontainers.Builders; -using FluentAssertions; +using AwesomeAssertions; using ContainerBuilder = DotNet.Testcontainers.Builders.ContainerBuilder; using IContainer = DotNet.Testcontainers.Containers.IContainer; diff --git a/tests/ByteSync.Functions.IntegrationTests/Integration/Services/AzureBlobStorageService_Tests.cs b/tests/ByteSync.Functions.IntegrationTests/Integration/Services/AzureBlobStorageService_Tests.cs index c05f0e44b..5208211ab 100644 --- a/tests/ByteSync.Functions.IntegrationTests/Integration/Services/AzureBlobStorageService_Tests.cs +++ b/tests/ByteSync.Functions.IntegrationTests/Integration/Services/AzureBlobStorageService_Tests.cs @@ -4,7 +4,7 @@ using Microsoft.Extensions.Options; using ByteSync.Common.Business.SharedFiles; using ByteSync.ServerCommon.Interfaces.Services.Storage.Factories; -using FluentAssertions; +using AwesomeAssertions; namespace ByteSync.Functions.IntegrationTests.Integration.Services; diff --git a/tests/ByteSync.Functions.IntegrationTests/Integration/Services/CloudflareR2Service_Tests.cs b/tests/ByteSync.Functions.IntegrationTests/Integration/Services/CloudflareR2Service_Tests.cs index e2856f061..54f694ae6 100644 --- a/tests/ByteSync.Functions.IntegrationTests/Integration/Services/CloudflareR2Service_Tests.cs +++ b/tests/ByteSync.Functions.IntegrationTests/Integration/Services/CloudflareR2Service_Tests.cs @@ -4,7 +4,7 @@ using Microsoft.Extensions.Options; using ByteSync.Common.Business.SharedFiles; using Microsoft.Extensions.Configuration; -using FluentAssertions; +using AwesomeAssertions; namespace ByteSync.Functions.IntegrationTests.Integration.Services; diff --git a/tests/ByteSync.Functions.UnitTests/ByteSync.Functions.UnitTests.csproj b/tests/ByteSync.Functions.UnitTests/ByteSync.Functions.UnitTests.csproj index 2065de64d..aa7aba5a7 100644 --- a/tests/ByteSync.Functions.UnitTests/ByteSync.Functions.UnitTests.csproj +++ b/tests/ByteSync.Functions.UnitTests/ByteSync.Functions.UnitTests.csproj @@ -10,7 +10,7 @@ - + diff --git a/tests/ByteSync.Functions.UnitTests/Helpers/Middlewares/JwtMiddlewareTests.cs b/tests/ByteSync.Functions.UnitTests/Helpers/Middlewares/JwtMiddlewareTests.cs index b907817b7..e0445f79a 100644 --- a/tests/ByteSync.Functions.UnitTests/Helpers/Middlewares/JwtMiddlewareTests.cs +++ b/tests/ByteSync.Functions.UnitTests/Helpers/Middlewares/JwtMiddlewareTests.cs @@ -1,7 +1,7 @@ using ByteSync.Functions.Helpers.Middlewares; using ByteSync.ServerCommon.Business.Settings; using ByteSync.ServerCommon.Interfaces.Repositories; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Azure.Functions.Worker; using Microsoft.Azure.Functions.Worker.Middleware; using Microsoft.Extensions.Logging; diff --git a/tests/ByteSync.Functions.UnitTests/Helpers/Misc/IpAddressExtractorTests.cs b/tests/ByteSync.Functions.UnitTests/Helpers/Misc/IpAddressExtractorTests.cs index 7c6783538..77afc1b6e 100644 --- a/tests/ByteSync.Functions.UnitTests/Helpers/Misc/IpAddressExtractorTests.cs +++ b/tests/ByteSync.Functions.UnitTests/Helpers/Misc/IpAddressExtractorTests.cs @@ -1,6 +1,6 @@ using ByteSync.Functions.Helpers.Misc; using ByteSync.Functions.UnitTests.TestHelpers; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Azure.Functions.Worker; using Microsoft.Azure.Functions.Worker.Http; using Moq; diff --git a/tests/ByteSync.Functions.UnitTests/Http/AnnouncementFunctionTests.cs b/tests/ByteSync.Functions.UnitTests/Http/AnnouncementFunctionTests.cs index d0e11167f..b43775920 100644 --- a/tests/ByteSync.Functions.UnitTests/Http/AnnouncementFunctionTests.cs +++ b/tests/ByteSync.Functions.UnitTests/Http/AnnouncementFunctionTests.cs @@ -3,7 +3,7 @@ using ByteSync.Functions.Http; using ByteSync.Functions.UnitTests.TestHelpers; using ByteSync.ServerCommon.Commands.Announcements; -using FluentAssertions; +using AwesomeAssertions; using MediatR; using Microsoft.Azure.Functions.Worker; using Moq; diff --git a/tests/ByteSync.Functions.UnitTests/Http/AuthFunctionTests.cs b/tests/ByteSync.Functions.UnitTests/Http/AuthFunctionTests.cs index 29af88a4b..9f538f7b9 100644 --- a/tests/ByteSync.Functions.UnitTests/Http/AuthFunctionTests.cs +++ b/tests/ByteSync.Functions.UnitTests/Http/AuthFunctionTests.cs @@ -6,7 +6,7 @@ using ByteSync.Functions.Http; using ByteSync.Functions.UnitTests.TestHelpers; using ByteSync.ServerCommon.Commands.Authentication; -using FluentAssertions; +using AwesomeAssertions; using MediatR; using Microsoft.Azure.Functions.Worker; using Moq; diff --git a/tests/ByteSync.Functions.UnitTests/Http/CloudSessionFunctionTests.cs b/tests/ByteSync.Functions.UnitTests/Http/CloudSessionFunctionTests.cs index 2cd2f6a97..8e44dfe8c 100644 --- a/tests/ByteSync.Functions.UnitTests/Http/CloudSessionFunctionTests.cs +++ b/tests/ByteSync.Functions.UnitTests/Http/CloudSessionFunctionTests.cs @@ -10,7 +10,7 @@ using ByteSync.Functions.UnitTests.TestHelpers; using ByteSync.ServerCommon.Business.Auth; using ByteSync.ServerCommon.Commands.CloudSessions; -using FluentAssertions; +using AwesomeAssertions; using MediatR; using Microsoft.Azure.Functions.Worker; using Moq; diff --git a/tests/ByteSync.Functions.UnitTests/Http/CloudSessionProfileFunctionTests.cs b/tests/ByteSync.Functions.UnitTests/Http/CloudSessionProfileFunctionTests.cs index 39dfc807b..3753067c7 100644 --- a/tests/ByteSync.Functions.UnitTests/Http/CloudSessionProfileFunctionTests.cs +++ b/tests/ByteSync.Functions.UnitTests/Http/CloudSessionProfileFunctionTests.cs @@ -8,7 +8,7 @@ using ByteSync.Functions.UnitTests.TestHelpers; using ByteSync.ServerCommon.Business.Auth; using ByteSync.ServerCommon.Interfaces.Services; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Azure.Functions.Worker; using Moq; diff --git a/tests/ByteSync.Functions.UnitTests/Http/FileTransferFunctionTests.cs b/tests/ByteSync.Functions.UnitTests/Http/FileTransferFunctionTests.cs index d99120fbf..1bbec39c3 100644 --- a/tests/ByteSync.Functions.UnitTests/Http/FileTransferFunctionTests.cs +++ b/tests/ByteSync.Functions.UnitTests/Http/FileTransferFunctionTests.cs @@ -7,7 +7,7 @@ using ByteSync.Functions.UnitTests.TestHelpers; using ByteSync.ServerCommon.Business.Auth; using ByteSync.ServerCommon.Commands.FileTransfers; -using FluentAssertions; +using AwesomeAssertions; using MediatR; using Microsoft.Azure.Functions.Worker; using Moq; diff --git a/tests/ByteSync.Functions.UnitTests/Http/InventoryFunctionTests.cs b/tests/ByteSync.Functions.UnitTests/Http/InventoryFunctionTests.cs index 397ca0856..fcbb76135 100644 --- a/tests/ByteSync.Functions.UnitTests/Http/InventoryFunctionTests.cs +++ b/tests/ByteSync.Functions.UnitTests/Http/InventoryFunctionTests.cs @@ -8,7 +8,7 @@ using ByteSync.Functions.UnitTests.TestHelpers; using ByteSync.ServerCommon.Business.Auth; using ByteSync.ServerCommon.Commands.Inventories; -using FluentAssertions; +using AwesomeAssertions; using MediatR; using Microsoft.Azure.Functions.Worker; using Moq; diff --git a/tests/ByteSync.Functions.UnitTests/Http/SynchronizationFunctionTests.cs b/tests/ByteSync.Functions.UnitTests/Http/SynchronizationFunctionTests.cs index 1c691b5d5..d3236620e 100644 --- a/tests/ByteSync.Functions.UnitTests/Http/SynchronizationFunctionTests.cs +++ b/tests/ByteSync.Functions.UnitTests/Http/SynchronizationFunctionTests.cs @@ -5,7 +5,7 @@ using ByteSync.Functions.UnitTests.TestHelpers; using ByteSync.ServerCommon.Business.Auth; using ByteSync.ServerCommon.Commands.Synchronizations; -using FluentAssertions; +using AwesomeAssertions; using MediatR; using Microsoft.Azure.Functions.Worker; using Moq; diff --git a/tests/ByteSync.Functions.UnitTests/Http/TrustFunctionTests.cs b/tests/ByteSync.Functions.UnitTests/Http/TrustFunctionTests.cs index c73ef5912..ae4427bfb 100644 --- a/tests/ByteSync.Functions.UnitTests/Http/TrustFunctionTests.cs +++ b/tests/ByteSync.Functions.UnitTests/Http/TrustFunctionTests.cs @@ -10,7 +10,7 @@ using ByteSync.Functions.UnitTests.TestHelpers; using ByteSync.ServerCommon.Business.Auth; using ByteSync.ServerCommon.Commands.Trusts; -using FluentAssertions; +using AwesomeAssertions; using MediatR; using Microsoft.Azure.Functions.Worker; using Moq; diff --git a/tests/ByteSync.ServerCommon.Tests/Business/CloudSessionDataTests.cs b/tests/ByteSync.ServerCommon.Tests/Business/CloudSessionDataTests.cs index 168583d2d..cca65debc 100644 --- a/tests/ByteSync.ServerCommon.Tests/Business/CloudSessionDataTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Business/CloudSessionDataTests.cs @@ -3,7 +3,7 @@ using ByteSync.Common.Business.Sessions.Cloud; using ByteSync.ServerCommon.Business.Auth; using ByteSync.ServerCommon.Business.Sessions; -using FluentAssertions; +using AwesomeAssertions; namespace ByteSync.ServerCommon.Tests.Business; diff --git a/tests/ByteSync.ServerCommon.Tests/Business/SessionMemberDataTests.cs b/tests/ByteSync.ServerCommon.Tests/Business/SessionMemberDataTests.cs index 5a435519d..a37d9bfe6 100644 --- a/tests/ByteSync.ServerCommon.Tests/Business/SessionMemberDataTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Business/SessionMemberDataTests.cs @@ -2,7 +2,7 @@ using ByteSync.Common.Business.Sessions; using ByteSync.ServerCommon.Business.Auth; using ByteSync.ServerCommon.Business.Sessions; -using FluentAssertions; +using AwesomeAssertions; namespace ByteSync.ServerCommon.Tests.Business; diff --git a/tests/ByteSync.ServerCommon.Tests/ByteSync.ServerCommon.Tests.csproj b/tests/ByteSync.ServerCommon.Tests/ByteSync.ServerCommon.Tests.csproj index f0021babe..86ebdfd64 100644 --- a/tests/ByteSync.ServerCommon.Tests/ByteSync.ServerCommon.Tests.csproj +++ b/tests/ByteSync.ServerCommon.Tests/ByteSync.ServerCommon.Tests.csproj @@ -14,7 +14,7 @@ - + diff --git a/tests/ByteSync.ServerCommon.Tests/Commands/Announcements/GetActiveAnnouncementsCommandHandlerTests.cs b/tests/ByteSync.ServerCommon.Tests/Commands/Announcements/GetActiveAnnouncementsCommandHandlerTests.cs index 7a997fcce..01e24550c 100644 --- a/tests/ByteSync.ServerCommon.Tests/Commands/Announcements/GetActiveAnnouncementsCommandHandlerTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Commands/Announcements/GetActiveAnnouncementsCommandHandlerTests.cs @@ -2,7 +2,7 @@ using ByteSync.ServerCommon.Commands.Announcements; using ByteSync.ServerCommon.Interfaces.Repositories; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; namespace ByteSync.ServerCommon.Tests.Commands.Announcements; diff --git a/tests/ByteSync.ServerCommon.Tests/Commands/Authentication/AuthenticateCommandHandlerTests.cs b/tests/ByteSync.ServerCommon.Tests/Commands/Authentication/AuthenticateCommandHandlerTests.cs index 073097e8b..04bf0e85d 100644 --- a/tests/ByteSync.ServerCommon.Tests/Commands/Authentication/AuthenticateCommandHandlerTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Commands/Authentication/AuthenticateCommandHandlerTests.cs @@ -7,7 +7,7 @@ using ByteSync.ServerCommon.Interfaces.Repositories; using ByteSync.ServerCommon.Interfaces.Services.Clients; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; namespace ByteSync.ServerCommon.Tests.Commands.Authentication; diff --git a/tests/ByteSync.ServerCommon.Tests/Commands/Authentication/RefreshTokensCommandHandlerTests.cs b/tests/ByteSync.ServerCommon.Tests/Commands/Authentication/RefreshTokensCommandHandlerTests.cs index aa7a91d22..9a565cd02 100644 --- a/tests/ByteSync.ServerCommon.Tests/Commands/Authentication/RefreshTokensCommandHandlerTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Commands/Authentication/RefreshTokensCommandHandlerTests.cs @@ -4,7 +4,7 @@ using ByteSync.ServerCommon.Interfaces.Factories; using ByteSync.ServerCommon.Interfaces.Repositories; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; namespace ByteSync.ServerCommon.Tests.Commands.Authentication; diff --git a/tests/ByteSync.ServerCommon.Tests/Commands/CloudSessions/CreateSessionCommandHandlerTests.cs b/tests/ByteSync.ServerCommon.Tests/Commands/CloudSessions/CreateSessionCommandHandlerTests.cs index e59008bf9..126755d2a 100644 --- a/tests/ByteSync.ServerCommon.Tests/Commands/CloudSessions/CreateSessionCommandHandlerTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Commands/CloudSessions/CreateSessionCommandHandlerTests.cs @@ -8,7 +8,7 @@ using ByteSync.ServerCommon.Interfaces.Services; using ByteSync.ServerCommon.Interfaces.Services.Clients; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using StackExchange.Redis; diff --git a/tests/ByteSync.ServerCommon.Tests/Commands/CloudSessions/FinalizeJoinCloudSessionCommandHandlerTests.cs b/tests/ByteSync.ServerCommon.Tests/Commands/CloudSessions/FinalizeJoinCloudSessionCommandHandlerTests.cs index 5f0f56d10..0b1df7a41 100644 --- a/tests/ByteSync.ServerCommon.Tests/Commands/CloudSessions/FinalizeJoinCloudSessionCommandHandlerTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Commands/CloudSessions/FinalizeJoinCloudSessionCommandHandlerTests.cs @@ -11,7 +11,7 @@ using ByteSync.ServerCommon.Interfaces.Services.Clients; using ByteSync.ServerCommon.Tests.Helpers; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using RedLockNet; using StackExchange.Redis; diff --git a/tests/ByteSync.ServerCommon.Tests/Commands/CloudSessions/QuitSessionCommandHandlerTests.cs b/tests/ByteSync.ServerCommon.Tests/Commands/CloudSessions/QuitSessionCommandHandlerTests.cs index 07df48104..b78cd3949 100644 --- a/tests/ByteSync.ServerCommon.Tests/Commands/CloudSessions/QuitSessionCommandHandlerTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Commands/CloudSessions/QuitSessionCommandHandlerTests.cs @@ -13,7 +13,7 @@ using ByteSync.ServerCommon.Interfaces.Services.Clients; using ByteSync.ServerCommon.Tests.Helpers; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using RedLockNet; using StackExchange.Redis; diff --git a/tests/ByteSync.ServerCommon.Tests/Commands/CloudSessions/UpdateSessionSettingsCommandHandlerTests.cs b/tests/ByteSync.ServerCommon.Tests/Commands/CloudSessions/UpdateSessionSettingsCommandHandlerTests.cs index 7df1d75b9..9e6674c47 100644 --- a/tests/ByteSync.ServerCommon.Tests/Commands/CloudSessions/UpdateSessionSettingsCommandHandlerTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Commands/CloudSessions/UpdateSessionSettingsCommandHandlerTests.cs @@ -11,7 +11,7 @@ using ByteSync.ServerCommon.Interfaces.Services.Clients; using ByteSync.ServerCommon.Tests.Helpers; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using RedLockNet; using StackExchange.Redis; diff --git a/tests/ByteSync.ServerCommon.Tests/Commands/FileTransfers/AssertDownloadIsFinishedCommandHandlerTests.cs b/tests/ByteSync.ServerCommon.Tests/Commands/FileTransfers/AssertDownloadIsFinishedCommandHandlerTests.cs index 3538e6590..3882ab509 100644 --- a/tests/ByteSync.ServerCommon.Tests/Commands/FileTransfers/AssertDownloadIsFinishedCommandHandlerTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Commands/FileTransfers/AssertDownloadIsFinishedCommandHandlerTests.cs @@ -8,7 +8,7 @@ using ByteSync.ServerCommon.Interfaces.Repositories; using ByteSync.ServerCommon.Interfaces.Services; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; namespace ByteSync.ServerCommon.Tests.Commands.FileTransfers; diff --git a/tests/ByteSync.ServerCommon.Tests/Commands/FileTransfers/AssertFilePartIsDownloadedCommandHandlerTests.cs b/tests/ByteSync.ServerCommon.Tests/Commands/FileTransfers/AssertFilePartIsDownloadedCommandHandlerTests.cs index a159cf4a0..954f373e9 100644 --- a/tests/ByteSync.ServerCommon.Tests/Commands/FileTransfers/AssertFilePartIsDownloadedCommandHandlerTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Commands/FileTransfers/AssertFilePartIsDownloadedCommandHandlerTests.cs @@ -5,7 +5,7 @@ using ByteSync.ServerCommon.Interfaces.Repositories; using ByteSync.ServerCommon.Interfaces.Services; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using ByteSync.ServerCommon.Entities; using RedLockNet; diff --git a/tests/ByteSync.ServerCommon.Tests/Commands/FileTransfers/AssertFilePartIsUploadedCommandHandlerTests.cs b/tests/ByteSync.ServerCommon.Tests/Commands/FileTransfers/AssertFilePartIsUploadedCommandHandlerTests.cs index b1e095a20..03f272758 100644 --- a/tests/ByteSync.ServerCommon.Tests/Commands/FileTransfers/AssertFilePartIsUploadedCommandHandlerTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Commands/FileTransfers/AssertFilePartIsUploadedCommandHandlerTests.cs @@ -8,7 +8,7 @@ using ByteSync.ServerCommon.Interfaces.Services.Clients; using FakeItEasy; using ByteSync.Common.Interfaces.Hub; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using RedLockNet; using StackExchange.Redis; diff --git a/tests/ByteSync.ServerCommon.Tests/Commands/FileTransfers/AssertUploadIsFinishedCommandHandlerTests.cs b/tests/ByteSync.ServerCommon.Tests/Commands/FileTransfers/AssertUploadIsFinishedCommandHandlerTests.cs index 6c8feef67..f590327b6 100644 --- a/tests/ByteSync.ServerCommon.Tests/Commands/FileTransfers/AssertUploadIsFinishedCommandHandlerTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Commands/FileTransfers/AssertUploadIsFinishedCommandHandlerTests.cs @@ -9,7 +9,7 @@ using ByteSync.ServerCommon.Interfaces.Services; using ByteSync.ServerCommon.Interfaces.Services.Clients; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; namespace ByteSync.ServerCommon.Tests.Commands.FileTransfers; diff --git a/tests/ByteSync.ServerCommon.Tests/Commands/FileTransfers/GetDownloadFileStorageLocationCommandHandlerTests.cs b/tests/ByteSync.ServerCommon.Tests/Commands/FileTransfers/GetDownloadFileStorageLocationCommandHandlerTests.cs index 40083a74d..2f0ecf9c6 100644 --- a/tests/ByteSync.ServerCommon.Tests/Commands/FileTransfers/GetDownloadFileStorageLocationCommandHandlerTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Commands/FileTransfers/GetDownloadFileStorageLocationCommandHandlerTests.cs @@ -4,7 +4,7 @@ using ByteSync.ServerCommon.Commands.FileTransfers; using ByteSync.ServerCommon.Interfaces.Services; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; diff --git a/tests/ByteSync.ServerCommon.Tests/Commands/FileTransfers/GetDownloadFileUrlCommandHandlerTests.cs b/tests/ByteSync.ServerCommon.Tests/Commands/FileTransfers/GetDownloadFileUrlCommandHandlerTests.cs index 3572330d4..0ba05094a 100644 --- a/tests/ByteSync.ServerCommon.Tests/Commands/FileTransfers/GetDownloadFileUrlCommandHandlerTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Commands/FileTransfers/GetDownloadFileUrlCommandHandlerTests.cs @@ -3,7 +3,7 @@ using ByteSync.ServerCommon.Commands.FileTransfers; using ByteSync.ServerCommon.Interfaces.Services; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; namespace ByteSync.ServerCommon.Tests.Commands.FileTransfers; diff --git a/tests/ByteSync.ServerCommon.Tests/Commands/FileTransfers/GetUploadFileStorageLocationCommandHandlerTests.cs b/tests/ByteSync.ServerCommon.Tests/Commands/FileTransfers/GetUploadFileStorageLocationCommandHandlerTests.cs index 201c2958f..2b83a89b4 100644 --- a/tests/ByteSync.ServerCommon.Tests/Commands/FileTransfers/GetUploadFileStorageLocationCommandHandlerTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Commands/FileTransfers/GetUploadFileStorageLocationCommandHandlerTests.cs @@ -4,7 +4,7 @@ using ByteSync.ServerCommon.Commands.FileTransfers; using ByteSync.ServerCommon.Interfaces.Services; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; diff --git a/tests/ByteSync.ServerCommon.Tests/Commands/FileTransfers/GetUploadFileUrlCommandHandlerTests.cs b/tests/ByteSync.ServerCommon.Tests/Commands/FileTransfers/GetUploadFileUrlCommandHandlerTests.cs index 2e14c05a7..1ba7cc7ce 100644 --- a/tests/ByteSync.ServerCommon.Tests/Commands/FileTransfers/GetUploadFileUrlCommandHandlerTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Commands/FileTransfers/GetUploadFileUrlCommandHandlerTests.cs @@ -3,7 +3,7 @@ using ByteSync.ServerCommon.Commands.FileTransfers; using ByteSync.ServerCommon.Interfaces.Services; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; namespace ByteSync.ServerCommon.Tests.Commands.FileTransfers; diff --git a/tests/ByteSync.ServerCommon.Tests/Commands/Inventories/AddDataNodeCommandHandlerTests.cs b/tests/ByteSync.ServerCommon.Tests/Commands/Inventories/AddDataNodeCommandHandlerTests.cs index fbf4fe26e..4726e0549 100644 --- a/tests/ByteSync.ServerCommon.Tests/Commands/Inventories/AddDataNodeCommandHandlerTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Commands/Inventories/AddDataNodeCommandHandlerTests.cs @@ -10,7 +10,7 @@ using ByteSync.ServerCommon.Interfaces.Services; using ByteSync.ServerCommon.Interfaces.Services.Clients; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; namespace ByteSync.ServerCommon.Tests.Commands.Inventories; diff --git a/tests/ByteSync.ServerCommon.Tests/Commands/Inventories/AddDataSourceCommandHandlerTests.cs b/tests/ByteSync.ServerCommon.Tests/Commands/Inventories/AddDataSourceCommandHandlerTests.cs index 41ce47637..ec5028f46 100644 --- a/tests/ByteSync.ServerCommon.Tests/Commands/Inventories/AddDataSourceCommandHandlerTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Commands/Inventories/AddDataSourceCommandHandlerTests.cs @@ -11,7 +11,7 @@ using System.Linq; using ByteSync.ServerCommon.Entities.Inventories; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; namespace ByteSync.ServerCommon.Tests.Commands.Inventories; diff --git a/tests/ByteSync.ServerCommon.Tests/Commands/Inventories/GetPathItemsCommandHandlerTests.cs b/tests/ByteSync.ServerCommon.Tests/Commands/Inventories/GetPathItemsCommandHandlerTests.cs index 7389518d3..87c1cd83c 100644 --- a/tests/ByteSync.ServerCommon.Tests/Commands/Inventories/GetPathItemsCommandHandlerTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Commands/Inventories/GetPathItemsCommandHandlerTests.cs @@ -6,7 +6,7 @@ using ByteSync.ServerCommon.Entities.Inventories; using ByteSync.ServerCommon.Interfaces.Repositories; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; namespace ByteSync.ServerCommon.Tests.Commands.Inventories; diff --git a/tests/ByteSync.ServerCommon.Tests/Commands/Inventories/RemoveDataNodeCommandHandlerTests.cs b/tests/ByteSync.ServerCommon.Tests/Commands/Inventories/RemoveDataNodeCommandHandlerTests.cs index 01e342ca7..f14c4c497 100644 --- a/tests/ByteSync.ServerCommon.Tests/Commands/Inventories/RemoveDataNodeCommandHandlerTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Commands/Inventories/RemoveDataNodeCommandHandlerTests.cs @@ -9,7 +9,7 @@ using ByteSync.ServerCommon.Interfaces.Services; using ByteSync.ServerCommon.Interfaces.Services.Clients; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; namespace ByteSync.ServerCommon.Tests.Commands.Inventories; diff --git a/tests/ByteSync.ServerCommon.Tests/Commands/Inventories/RemoveDataSourceCommandHandlerTests.cs b/tests/ByteSync.ServerCommon.Tests/Commands/Inventories/RemoveDataSourceCommandHandlerTests.cs index ece4f43ef..1f979ab52 100644 --- a/tests/ByteSync.ServerCommon.Tests/Commands/Inventories/RemoveDataSourceCommandHandlerTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Commands/Inventories/RemoveDataSourceCommandHandlerTests.cs @@ -10,7 +10,7 @@ using ByteSync.ServerCommon.Interfaces.Services; using ByteSync.ServerCommon.Interfaces.Services.Clients; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; namespace ByteSync.ServerCommon.Tests.Commands.Inventories; diff --git a/tests/ByteSync.ServerCommon.Tests/Commands/Inventories/StartInventoryCommandHandlerTests.cs b/tests/ByteSync.ServerCommon.Tests/Commands/Inventories/StartInventoryCommandHandlerTests.cs index 2b2478d2b..0817a5e4c 100644 --- a/tests/ByteSync.ServerCommon.Tests/Commands/Inventories/StartInventoryCommandHandlerTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Commands/Inventories/StartInventoryCommandHandlerTests.cs @@ -10,7 +10,7 @@ using ByteSync.ServerCommon.Interfaces.Services; using ByteSync.ServerCommon.Interfaces.Services.Clients; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using RedLockNet; using StackExchange.Redis; diff --git a/tests/ByteSync.ServerCommon.Tests/Commands/SessionMembers/SetGeneralStatusCommandHandlerTests.cs b/tests/ByteSync.ServerCommon.Tests/Commands/SessionMembers/SetGeneralStatusCommandHandlerTests.cs index 50264fdb9..14f2dec35 100644 --- a/tests/ByteSync.ServerCommon.Tests/Commands/SessionMembers/SetGeneralStatusCommandHandlerTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Commands/SessionMembers/SetGeneralStatusCommandHandlerTests.cs @@ -9,7 +9,7 @@ using ByteSync.ServerCommon.Interfaces.Services.Clients; using ByteSync.ServerCommon.Tests.Helpers; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; namespace ByteSync.ServerCommon.Tests.Commands.SessionMembers; diff --git a/tests/ByteSync.ServerCommon.Tests/Commands/Synchronizations/DateIsCopiedCommandHandlerTests.cs b/tests/ByteSync.ServerCommon.Tests/Commands/Synchronizations/DateIsCopiedCommandHandlerTests.cs index 98f173694..09c33c79b 100644 --- a/tests/ByteSync.ServerCommon.Tests/Commands/Synchronizations/DateIsCopiedCommandHandlerTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Commands/Synchronizations/DateIsCopiedCommandHandlerTests.cs @@ -5,7 +5,7 @@ using ByteSync.ServerCommon.Interfaces.Repositories; using ByteSync.ServerCommon.Interfaces.Services; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; namespace ByteSync.ServerCommon.Tests.Commands.Synchronizations; diff --git a/tests/ByteSync.ServerCommon.Tests/Commands/Synchronizations/DirectoryIsCreatedCommandHandlerTests.cs b/tests/ByteSync.ServerCommon.Tests/Commands/Synchronizations/DirectoryIsCreatedCommandHandlerTests.cs index 2889ffe03..2f90bf952 100644 --- a/tests/ByteSync.ServerCommon.Tests/Commands/Synchronizations/DirectoryIsCreatedCommandHandlerTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Commands/Synchronizations/DirectoryIsCreatedCommandHandlerTests.cs @@ -5,7 +5,7 @@ using ByteSync.ServerCommon.Interfaces.Repositories; using ByteSync.ServerCommon.Interfaces.Services; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; namespace ByteSync.ServerCommon.Tests.Commands.Synchronizations; diff --git a/tests/ByteSync.ServerCommon.Tests/Commands/Synchronizations/FileOrDirectoryIsDeletedCommandHandlerTests.cs b/tests/ByteSync.ServerCommon.Tests/Commands/Synchronizations/FileOrDirectoryIsDeletedCommandHandlerTests.cs index 66ff19542..b3dee5b24 100644 --- a/tests/ByteSync.ServerCommon.Tests/Commands/Synchronizations/FileOrDirectoryIsDeletedCommandHandlerTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Commands/Synchronizations/FileOrDirectoryIsDeletedCommandHandlerTests.cs @@ -5,7 +5,7 @@ using ByteSync.ServerCommon.Interfaces.Repositories; using ByteSync.ServerCommon.Interfaces.Services; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; namespace ByteSync.ServerCommon.Tests.Commands.Synchronizations; diff --git a/tests/ByteSync.ServerCommon.Tests/Commands/Synchronizations/LocalCopyIsDoneCommandHandlerTests.cs b/tests/ByteSync.ServerCommon.Tests/Commands/Synchronizations/LocalCopyIsDoneCommandHandlerTests.cs index bdc9223b1..4ace6f752 100644 --- a/tests/ByteSync.ServerCommon.Tests/Commands/Synchronizations/LocalCopyIsDoneCommandHandlerTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Commands/Synchronizations/LocalCopyIsDoneCommandHandlerTests.cs @@ -5,7 +5,7 @@ using ByteSync.ServerCommon.Interfaces.Repositories; using ByteSync.ServerCommon.Interfaces.Services; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using ByteSync.Common.Business.Synchronizations; diff --git a/tests/ByteSync.ServerCommon.Tests/Commands/Synchronizations/MemberHasFinishedCommandHandlerTests.cs b/tests/ByteSync.ServerCommon.Tests/Commands/Synchronizations/MemberHasFinishedCommandHandlerTests.cs index 717657c2a..034991811 100644 --- a/tests/ByteSync.ServerCommon.Tests/Commands/Synchronizations/MemberHasFinishedCommandHandlerTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Commands/Synchronizations/MemberHasFinishedCommandHandlerTests.cs @@ -5,7 +5,7 @@ using ByteSync.ServerCommon.Interfaces.Repositories; using ByteSync.ServerCommon.Interfaces.Services; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using RedLockNet; using StackExchange.Redis; diff --git a/tests/ByteSync.ServerCommon.Tests/Commands/Synchronizations/RequestSynchronizationAbortCommandHandlerTests.cs b/tests/ByteSync.ServerCommon.Tests/Commands/Synchronizations/RequestSynchronizationAbortCommandHandlerTests.cs index 47f4c2aa5..404f8105e 100644 --- a/tests/ByteSync.ServerCommon.Tests/Commands/Synchronizations/RequestSynchronizationAbortCommandHandlerTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Commands/Synchronizations/RequestSynchronizationAbortCommandHandlerTests.cs @@ -5,7 +5,7 @@ using ByteSync.ServerCommon.Interfaces.Repositories; using ByteSync.ServerCommon.Interfaces.Services; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using RedLockNet; using StackExchange.Redis; diff --git a/tests/ByteSync.ServerCommon.Tests/Commands/Synchronizations/StartSynchronizationCommandHandlerTests.cs b/tests/ByteSync.ServerCommon.Tests/Commands/Synchronizations/StartSynchronizationCommandHandlerTests.cs index b05e3ccfb..7be00ae5f 100644 --- a/tests/ByteSync.ServerCommon.Tests/Commands/Synchronizations/StartSynchronizationCommandHandlerTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Commands/Synchronizations/StartSynchronizationCommandHandlerTests.cs @@ -6,7 +6,7 @@ using ByteSync.ServerCommon.Interfaces.Repositories; using ByteSync.ServerCommon.Interfaces.Services; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; namespace ByteSync.ServerCommon.Tests.Commands.Synchronizations; diff --git a/tests/ByteSync.ServerCommon.Tests/Commands/Synchronizations/SynchronizationErrorsCommandHandlerTests.cs b/tests/ByteSync.ServerCommon.Tests/Commands/Synchronizations/SynchronizationErrorsCommandHandlerTests.cs index 0a2bd6ab7..03856f4ec 100644 --- a/tests/ByteSync.ServerCommon.Tests/Commands/Synchronizations/SynchronizationErrorsCommandHandlerTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Commands/Synchronizations/SynchronizationErrorsCommandHandlerTests.cs @@ -5,7 +5,7 @@ using ByteSync.ServerCommon.Interfaces.Repositories; using ByteSync.ServerCommon.Interfaces.Services; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; namespace ByteSync.ServerCommon.Tests.Commands.Synchronizations; diff --git a/tests/ByteSync.ServerCommon.Tests/Commands/Trusts/GiveMemberPublicKeyCheckDataCommandHandlerTests.cs b/tests/ByteSync.ServerCommon.Tests/Commands/Trusts/GiveMemberPublicKeyCheckDataCommandHandlerTests.cs index fd0e9f001..a2d2fe221 100644 --- a/tests/ByteSync.ServerCommon.Tests/Commands/Trusts/GiveMemberPublicKeyCheckDataCommandHandlerTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Commands/Trusts/GiveMemberPublicKeyCheckDataCommandHandlerTests.cs @@ -5,7 +5,7 @@ using ByteSync.ServerCommon.Commands.Trusts; using ByteSync.ServerCommon.Interfaces.Services.Clients; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; namespace ByteSync.ServerCommon.Tests.Commands.Trusts; diff --git a/tests/ByteSync.ServerCommon.Tests/Commands/Trusts/InformProtocolVersionIncompatibleCommandHandlerTests.cs b/tests/ByteSync.ServerCommon.Tests/Commands/Trusts/InformProtocolVersionIncompatibleCommandHandlerTests.cs index 05075b3ff..a3e45bd95 100644 --- a/tests/ByteSync.ServerCommon.Tests/Commands/Trusts/InformProtocolVersionIncompatibleCommandHandlerTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Commands/Trusts/InformProtocolVersionIncompatibleCommandHandlerTests.cs @@ -5,7 +5,7 @@ using ByteSync.ServerCommon.Commands.Trusts; using ByteSync.ServerCommon.Interfaces.Services.Clients; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; namespace ByteSync.ServerCommon.Tests.Commands.Trusts; diff --git a/tests/ByteSync.ServerCommon.Tests/Commands/Trusts/SetAuthCheckedCommandHandlerTests.cs b/tests/ByteSync.ServerCommon.Tests/Commands/Trusts/SetAuthCheckedCommandHandlerTests.cs index 980bc5357..d39bad660 100644 --- a/tests/ByteSync.ServerCommon.Tests/Commands/Trusts/SetAuthCheckedCommandHandlerTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Commands/Trusts/SetAuthCheckedCommandHandlerTests.cs @@ -3,7 +3,7 @@ using ByteSync.ServerCommon.Business.Sessions; using ByteSync.ServerCommon.Commands.Trusts; using ByteSync.ServerCommon.Interfaces.Repositories; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Moq; diff --git a/tests/ByteSync.ServerCommon.Tests/Commands/Trusts/StartTrustCheckCommandHandlerTests.cs b/tests/ByteSync.ServerCommon.Tests/Commands/Trusts/StartTrustCheckCommandHandlerTests.cs index 629f4f5ba..1f72bfc31 100644 --- a/tests/ByteSync.ServerCommon.Tests/Commands/Trusts/StartTrustCheckCommandHandlerTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Commands/Trusts/StartTrustCheckCommandHandlerTests.cs @@ -9,7 +9,7 @@ using ByteSync.ServerCommon.Interfaces.Repositories; using ByteSync.ServerCommon.Interfaces.Services.Clients; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; namespace ByteSync.ServerCommon.Tests.Commands.Trusts; diff --git a/tests/ByteSync.ServerCommon.Tests/Factories/CacheKeyFactoryTests.cs b/tests/ByteSync.ServerCommon.Tests/Factories/CacheKeyFactoryTests.cs index fb9f95141..3cd9bbb53 100644 --- a/tests/ByteSync.ServerCommon.Tests/Factories/CacheKeyFactoryTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Factories/CacheKeyFactoryTests.cs @@ -2,7 +2,7 @@ using ByteSync.ServerCommon.Entities; using ByteSync.ServerCommon.Factories; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Options; namespace ByteSync.ServerCommon.Tests.Factories; diff --git a/tests/ByteSync.ServerCommon.Tests/Loaders/AnnouncementsLoaderTests.cs b/tests/ByteSync.ServerCommon.Tests/Loaders/AnnouncementsLoaderTests.cs index 5d8b490a8..3a9727835 100644 --- a/tests/ByteSync.ServerCommon.Tests/Loaders/AnnouncementsLoaderTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Loaders/AnnouncementsLoaderTests.cs @@ -3,7 +3,7 @@ using ByteSync.ServerCommon.Business.Settings; using ByteSync.ServerCommon.Loaders; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; using System.Net; diff --git a/tests/ByteSync.ServerCommon.Tests/Loaders/ClientSoftwareVersionSettingsLoaderTests.cs b/tests/ByteSync.ServerCommon.Tests/Loaders/ClientSoftwareVersionSettingsLoaderTests.cs index 6adebd33a..a6ee283a5 100644 --- a/tests/ByteSync.ServerCommon.Tests/Loaders/ClientSoftwareVersionSettingsLoaderTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Loaders/ClientSoftwareVersionSettingsLoaderTests.cs @@ -3,7 +3,7 @@ using ByteSync.ServerCommon.Business.Settings; using ByteSync.ServerCommon.Loaders; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; using System.Net; diff --git a/tests/ByteSync.ServerCommon.Tests/Repositories/ClientsRepositoryTests.cs b/tests/ByteSync.ServerCommon.Tests/Repositories/ClientsRepositoryTests.cs index e24bff259..68f6a42c6 100644 --- a/tests/ByteSync.ServerCommon.Tests/Repositories/ClientsRepositoryTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Repositories/ClientsRepositoryTests.cs @@ -8,7 +8,7 @@ using ByteSync.ServerCommon.Services; using ByteSync.ServerCommon.Tests.Helpers; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; diff --git a/tests/ByteSync.ServerCommon.Tests/Repositories/CloudSessionsRepositoryTests.cs b/tests/ByteSync.ServerCommon.Tests/Repositories/CloudSessionsRepositoryTests.cs index d71aaaab6..94b1d29ca 100644 --- a/tests/ByteSync.ServerCommon.Tests/Repositories/CloudSessionsRepositoryTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Repositories/CloudSessionsRepositoryTests.cs @@ -6,7 +6,7 @@ using ByteSync.ServerCommon.Services; using ByteSync.ServerCommon.Tests.Helpers; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; diff --git a/tests/ByteSync.ServerCommon.Tests/Repositories/InventoryRepositoryTests.cs b/tests/ByteSync.ServerCommon.Tests/Repositories/InventoryRepositoryTests.cs index d754ba170..b47f29306 100644 --- a/tests/ByteSync.ServerCommon.Tests/Repositories/InventoryRepositoryTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Repositories/InventoryRepositoryTests.cs @@ -5,7 +5,7 @@ using ByteSync.ServerCommon.Services; using ByteSync.ServerCommon.Tests.Helpers; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; diff --git a/tests/ByteSync.ServerCommon.Tests/Repositories/SharedFilesRepositoryTests.cs b/tests/ByteSync.ServerCommon.Tests/Repositories/SharedFilesRepositoryTests.cs index 845a036f9..cc4a5506c 100644 --- a/tests/ByteSync.ServerCommon.Tests/Repositories/SharedFilesRepositoryTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Repositories/SharedFilesRepositoryTests.cs @@ -6,7 +6,7 @@ using ByteSync.ServerCommon.Services; using ByteSync.ServerCommon.Tests.Helpers; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; diff --git a/tests/ByteSync.ServerCommon.Tests/Repositories/SynchronizationRepositoryTests.cs b/tests/ByteSync.ServerCommon.Tests/Repositories/SynchronizationRepositoryTests.cs index d7cc1eff7..6a543feb6 100644 --- a/tests/ByteSync.ServerCommon.Tests/Repositories/SynchronizationRepositoryTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Repositories/SynchronizationRepositoryTests.cs @@ -5,7 +5,7 @@ using ByteSync.ServerCommon.Services; using ByteSync.ServerCommon.Tests.Helpers; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; diff --git a/tests/ByteSync.ServerCommon.Tests/Repositories/TrackingActionRepositoryTests.cs b/tests/ByteSync.ServerCommon.Tests/Repositories/TrackingActionRepositoryTests.cs index 5b19c38e5..b08e5857f 100644 --- a/tests/ByteSync.ServerCommon.Tests/Repositories/TrackingActionRepositoryTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Repositories/TrackingActionRepositoryTests.cs @@ -7,7 +7,7 @@ using ByteSync.ServerCommon.Services; using ByteSync.ServerCommon.Tests.Helpers; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; diff --git a/tests/ByteSync.ServerCommon.Tests/Services/AzureBlobStorageContainerServiceTests.cs b/tests/ByteSync.ServerCommon.Tests/Services/AzureBlobStorageContainerServiceTests.cs index 6364ab0e2..acb65b91f 100644 --- a/tests/ByteSync.ServerCommon.Tests/Services/AzureBlobStorageContainerServiceTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Services/AzureBlobStorageContainerServiceTests.cs @@ -2,7 +2,7 @@ using ByteSync.ServerCommon.Business.Settings; using ByteSync.ServerCommon.Interfaces.Services.Storage.Factories; using ByteSync.ServerCommon.Services.Storage.Factories; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Options; namespace ByteSync.ServerCommon.Tests.Services; diff --git a/tests/ByteSync.ServerCommon.Tests/Services/AzureBlobStorageServiceTests.cs b/tests/ByteSync.ServerCommon.Tests/Services/AzureBlobStorageServiceTests.cs index 181ef8dcc..1ff1abca4 100644 --- a/tests/ByteSync.ServerCommon.Tests/Services/AzureBlobStorageServiceTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Services/AzureBlobStorageServiceTests.cs @@ -7,7 +7,7 @@ using ByteSync.ServerCommon.Interfaces.Services.Storage.Factories; using ByteSync.ServerCommon.Services.Storage; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; namespace ByteSync.ServerCommon.Tests.Services; diff --git a/tests/ByteSync.ServerCommon.Tests/Services/ClientSoftwareVersionServiceTests.cs b/tests/ByteSync.ServerCommon.Tests/Services/ClientSoftwareVersionServiceTests.cs index 4d82838e4..8ef50009e 100644 --- a/tests/ByteSync.ServerCommon.Tests/Services/ClientSoftwareVersionServiceTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Services/ClientSoftwareVersionServiceTests.cs @@ -5,7 +5,7 @@ using ByteSync.ServerCommon.Interfaces.Repositories; using ByteSync.ServerCommon.Services.Clients; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; diff --git a/tests/ByteSync.ServerCommon.Tests/Services/InventoryMemberServiceTests.cs b/tests/ByteSync.ServerCommon.Tests/Services/InventoryMemberServiceTests.cs index 2f7f30e65..12d785785 100644 --- a/tests/ByteSync.ServerCommon.Tests/Services/InventoryMemberServiceTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Services/InventoryMemberServiceTests.cs @@ -4,7 +4,7 @@ using ByteSync.ServerCommon.Entities.Inventories; using ByteSync.ServerCommon.Interfaces.Services; using ByteSync.ServerCommon.Services; -using FluentAssertions; +using AwesomeAssertions; namespace ByteSync.ServerCommon.Tests.Services; diff --git a/tests/ByteSync.ServerCommon.Tests/Services/SharedFilesServiceTests.cs b/tests/ByteSync.ServerCommon.Tests/Services/SharedFilesServiceTests.cs index 957bd78ba..1a647e4ab 100644 --- a/tests/ByteSync.ServerCommon.Tests/Services/SharedFilesServiceTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Services/SharedFilesServiceTests.cs @@ -6,7 +6,7 @@ using ByteSync.ServerCommon.Interfaces.Services.Storage; using ByteSync.ServerCommon.Services; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; diff --git a/tests/ByteSync.ServerCommon.Tests/Services/SynchronizationProgressServiceTests.cs b/tests/ByteSync.ServerCommon.Tests/Services/SynchronizationProgressServiceTests.cs index 63e24d75c..b310a7d86 100644 --- a/tests/ByteSync.ServerCommon.Tests/Services/SynchronizationProgressServiceTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Services/SynchronizationProgressServiceTests.cs @@ -7,7 +7,7 @@ using ByteSync.ServerCommon.Interfaces.Services.Clients; using ByteSync.ServerCommon.Services; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; namespace ByteSync.ServerCommon.Tests.Services; diff --git a/tests/ByteSync.ServerCommon.Tests/Services/SynchronizationServiceTests.cs b/tests/ByteSync.ServerCommon.Tests/Services/SynchronizationServiceTests.cs index 023da62e6..3dbde34dd 100644 --- a/tests/ByteSync.ServerCommon.Tests/Services/SynchronizationServiceTests.cs +++ b/tests/ByteSync.ServerCommon.Tests/Services/SynchronizationServiceTests.cs @@ -3,7 +3,7 @@ using ByteSync.ServerCommon.Interfaces.Repositories; using ByteSync.ServerCommon.Services; using FakeItEasy; -using FluentAssertions; +using AwesomeAssertions; namespace ByteSync.ServerCommon.Tests.Services;