public async Task ExistsWithSameTitleInAnotherJourneyAsync_SameTitle_ShouldReturnFalse()
        {
            using (var context = new PreservationContext(_dbContextOptions, _plantProvider, _eventDispatcher, _currentUserProvider))
            {
                var dut    = new JourneyValidator(context);
                var result = await dut.ExistsWithSameTitleInAnotherJourneyAsync(_journey1WithStepId, Journey1WithStepTitle, default);

                Assert.IsFalse(result);
            }
        }