File tree 3 files changed +41
-0
lines changed
3 files changed +41
-0
lines changed Original file line number Diff line number Diff line change
1
+ This repo contains basic examples for testing and debugging in Python.
2
+
3
+ ## Files
4
+
5
+ - ** ` basic_testing.py ` ** : Contains a simple function and tests for it using Python's ` unittest ` framework.
6
+ - ** ` debugging_example.py ` ** : Demonstrates common errors and issues in code for practice in debugging.
7
+
8
+ ## Running the Code
9
+
10
+ ### Testing
11
+
12
+ To run the tests in ` basic_testing.py ` , use the following command:
13
+
14
+ ``` bash
15
+ python basic_testing.py
16
+ ```
Original file line number Diff line number Diff line change
1
+ import unittest
2
+
3
+ def add (a , b ):
4
+ return a + b
5
+
6
+ class TestMathFunctions (unittest .TestCase ):
7
+
8
+ def test_add (self ):
9
+ self .assertEqual (add (1 , 2 ), 3 )
10
+ self .assertEqual (add (- 1 , 1 ), 0 )
11
+ self .assertEqual (add (- 1 , - 1 ), - 2 )
12
+
13
+ if __name__ == "__main__" :
14
+ unittest .main ()
Original file line number Diff line number Diff line change
1
+ def multiply (a , b ):
2
+ # intentional bug: incorrect operation
3
+ return a + b
4
+
5
+ def divide (a , b ):
6
+ # intentional bug: division by zero
7
+ return a / b
8
+
9
+ if __name__ == "__main__" :
10
+ print (multiply (2 , 3 )) # expected output: 6
11
+ print (divide (10 , 0 )) # expected to raise ZeroDivisionError
You can’t perform that action at this time.
0 commit comments