Skip to main content

pymcdc

A Python package to analyze and verify MC/DC (Modified Condition/Decision Coverage) criteria.

V 0.1.1 - add option --cover to manually set requeriment as covered/not covered

V 0.1.3 - allows source file and test file to be in different directories

V 0.2 - do some bug fixes.

V 0.2.1 - 'Don't care' conditions are shown in the requirements lists.

V 0.2.2 - Introduces argument --assert to enable analysis on assert statements.

V 0.2.3 - Fixes the use of not operator and introduces --html argument.

V 0.2.4 - do some bug fixes.

V 0.2.5 - do some bug fixes.

V 0.2.6 - do some bug fixes. HTML file with responsive table headers.

Installation

pip install pymcdc

How to Use

Analyzes the file foo.py and displays the condition combinations that must be satisfied for each decision.By default assert statements are not considered to generate MC/DC requirements. This can be changed with --assert argument.

python -m pymcdc foo.py
python -m pymcdc --assert foo.py

Executes foo.py and shows which MC/DC combinations were covered.

python -m pymcdc --run foo.py

Executes foo.py with arguments ['bar', '1972'] and shows which MC/DC combinations were covered.

python -m pymcdc --run --args "bar 1972" foo.py

Cumulatively runs foo.py and displays the MC/DC combinations covered across multiple runs.

python -m pymcdc --run --append foo.py

Runs foo.py using the test cases defined in test_foo.py.
The --unittest argument can be used multiple times. The --append option is also supported here.

python -m pymcdc --unittest test_foo.py foo.py
python -m pymcdc --unittest tests/test_foo.py src/foo.py

Sets requirement 1 of decision (5,5) as covered and requirement 3 of decision (18,5) as not covered.

python -m pymcdc --cover +5 5 1 -18 5 3 foo.py

Creates an html report in fle html/foo.py/index.html .

python -m pymcdc --html foo.py


### 🔍 Example

```bash
python3 -m pymcdc isleap.py
Line number: (5, 5)
Decicion: a < 1 or a > 9999
Combinations to be covered: 
    | Result.   a < 1    a > 9999   Cover. 
-------------------------------------------
  1 |  False    False     False     False  
  2 |   True    True       ----     False  
  3 |   True    False      True     False  


Covered 0 out of 3 requirements in 1 decisions (0%)
	      
Run time: 0.00052 
python3 -m pymcdc --run isleap.py
Line number: (5, 5)
Decicion: a < 1 or a > 9999
Combinations to be covered: 
    | Result.   a < 1    a > 9999   Cover. 
-------------------------------------------
  1 |  False    False     False      True  
  2 |   True    True       ----     False  
  3 |   True    False      True      True  


Covered 2 out of 3 requirements in 1 decisions (66%)
python3 -m pymcdc --unittest test_isleap.py isleap.py
.
----------------------------------------------------------------------
Ran 1 test in 0.000s

OK

Line number: (5, 5)
Decicion: a < 1 or a > 9999
Combinations to be covered: 
    | Result.   a < 1    a > 9999   Cover. 
-------------------------------------------
  1 |  False    False     False     False  
  2 |   True    True       ----     False  
  3 |   True    False      True      True  


Covered 1 out of 3 requirements in 1 decisions (33%)
python3 -m pymcdc --html test_isleap.py isleap.py
Html file generated at: file:///home/user/mcdc/html/isLeap.py/index.htm

You can also use multiple --path <folder path> to include this folder in the sys.path variable for the interpreter. In this way, imports will also be searched in these folders.

The symbol '----' is used to indicate that the value for that part of the requirement does not matter in the verification. This is due to the language's decision evaluation strategy (short-circuiting).

In the generated HTML file, you can view the combination pairs that ensure each condition is met. To do this, simply click on the desired condition in the table header. To return to the full table, simply click it again.

📝 Notes

  1. The number of MC/DC requirements for a decision with n conditions is not always n+1. It can be slightly larger due to limitations in the computation algorithm.
  2. For decisions with more than 15 conditions, the analysis may take a few minutes. This is only done once.

👤 Author

Marcio Delamaro

📄 License

MIT

🤝 Contributions

Feel free to open issues or submit pull requests!

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pymcdc-0.2.6.tar.gz (20.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pymcdc-0.2.6-py3-none-any.whl (22.5 kB view details)

Uploaded Python 3

File details

Details for the file pymcdc-0.2.6.tar.gz.

File metadata

  • Download URL: pymcdc-0.2.6.tar.gz
  • Upload date:
  • Size: 20.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.12

File hashes

Hashes for pymcdc-0.2.6.tar.gz
Algorithm Hash digest
SHA256 9a99e56eb2fa520d00e7cb2bd1df73348e1d5e982d5d24d5cca423f9a51dd56d
MD5 64ec54c0fcc98e0aa6619cf8bfc028a2
BLAKE2b-256 6f807ef35d51df3929110361171a90f2ac598552aca0c3e5c2019896fd1fa633

See more details on using hashes here.

File details

Details for the file pymcdc-0.2.6-py3-none-any.whl.

File metadata

  • Download URL: pymcdc-0.2.6-py3-none-any.whl
  • Upload date:
  • Size: 22.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.12

File hashes

Hashes for pymcdc-0.2.6-py3-none-any.whl
Algorithm Hash digest
SHA256 4e2a78fe37a43cc8cd2486d63753b5d87e6766d31b95ce78f723584d565e6b0b
MD5 8a827049303eda1c46a4323c111b878c
BLAKE2b-256 70b1aa914fddb91ef29933799d14da49d426fff7d51effe07c3f1cd75c18f089

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.2.6 This release

2 files

0.2.5

2 files

0.2.4

2 files

0.2.3

2 files

0.2.2

2 files

0.2.1

2 files

0.2

2 files

0.1.3

2 files

0.1.1

2 files

0.1

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page