BusinessLogic.Tests.UnitTests.LogicTests.SecurityTests.LinkedPlayedGameValidatorTests.ValidateTests.It_Doesnt_Throw_An_EntityAlreadySynchedException_If_An_Entity_With_This_ApplicationName_Doesnt_Exist C# (CSharp) Method

It_Doesnt_Throw_An_EntityAlreadySynchedException_If_An_Entity_With_This_ApplicationName_Doesnt_Exist() private method

        public void It_Doesnt_Throw_An_EntityAlreadySynchedException_If_An_Entity_With_This_ApplicationName_Doesnt_Exist()
        {
            //--arrange
            var newlyCompletedGame = CreateNewlyCompletedGame();
            var applicationLinkage = new ApplicationLinkage
            {
                ApplicationName = "name that doesnt exist",
                EntityId = _expectedEntityId
            }; newlyCompletedGame.ApplicationLinkages.Add(applicationLinkage);

            //--act
            _autoMocker.ClassUnderTest.Validate(newlyCompletedGame);
        }