Repository with assignments using the Test Informed Learning with Examples (TILE) method to integrate testing into existing programming courses for free.
Join our LinkedIN Community.
Use the following BibTeX entry to cite this work:
@INPROCEEDINGS{DVMB2023, author={Doorn, Niels and Vos, Tanja and Marín, Beatriz and Barendsen, Erik}, booktitle={2023 IEEE Conference on Software Testing, Verification and Validation (ICST)}, title={Set the right example when teaching programming: Test Informed Learning with Examples (TILE)}, year={2023}, volume={}, number={}, pages={269-280}, doi={10.1109/ICST57152.2023.00033} }
Write a Python function delete_negatives
that takes a list as an
argument and returns the same list but without the negative
elements.
>>> delete_negatives([0,-1,-11,2,33,-100,5])
[2, 33, 5]
>>> delete_negatives([-1,-11,-3])
[]
>>> delete_negatives([4,68,111])
[4, 68, 111]
Run more automated tests with pytest. Don’t forget a test for the empty list and the list with 1 element.