Completed
Intro
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
Multiply Your Testing Effectiveness with Parameterized Testing
Automatically move to the next video in the Classroom when playback concludes
- 1 Intro
- 2 Brian Okken
- 3 Value of Tests
- 4 Parametrize vs Parameterize
- 5 Something to Test
- 6 without Parametrization
- 7 Moving to one test (don't do this)
- 8 Function Parametrization
- 9 Parameters from a named list
- 10 Parameters from a function
- 11 Parameters from a generator
- 12 Parameters from a file
- 13 Run the last failing test case
- 14 Run test cases with 60 degree angles
- 15 Run an individual test case
- 16 Fixture Parametrization
- 17 Object parameters get non-helpful names
- 18 An ids function
- 19 Custom ids function
- 20 pytest_generate_tests()
- 21 metafunc
- 22 test.param
- 23 indirect parameter
- 24 indirect example
- 25 More test cases
- 26 Review
- 27 Combining Techniques
- 28 Resources