AppActs.API.Repository.MSTest.CrashRepositoryIntegration.SaveThrowsDataAccessLayerException C# (CSharp) 메소드

SaveThrowsDataAccessLayerException() 개인적인 메소드

private SaveThrowsDataAccessLayerException ( ) : void
리턴 void
        public void SaveThrowsDataAccessLayerException()
        {
            ICrashRepository iCrashRepository = new CrashRepository(this.connectionString);

            iCrashRepository.Save(1, 1, new Crash("1.1.1.1", Guid.NewGuid(), DateTime.Now));
        }