This document discusses principles of continuous delivery and continuous testing. The key points are:
1. Continuous delivery aims to deliver software frequently through automated processes in order to get faster feedback and reduce risk. All tests should be automated except for user acceptance testing.
2. Principles of continuous delivery include automating everything, failing fast, keeping everything under source control, and building quality in from the start.
3. Test automation is important for continuous delivery and comes in various forms including unit, component, system, and exploratory testing. Test-driven development involves automating tests in parallel with feature development.