Skip to content

megsss/3250-spring-2019-team-5

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JVPM

This repo has a simple 'Hello World' program in Python 3. To run the program, do

$ python3 jvpm/HelloWorld.py
Hello world

As with all good programs, there are unit tests for Test-Driven Development included. To run the tests, do

$ python3 -m unittest
.
----------------------------------------------------------------------
Ran 1 test in 0.001s

OK

We use test code coverage tools to make sure we are covering as much of the program as possible with the tests. To generate the test code coverage, do

$ coverage run -m unittest

To view the results, do

$ coverage report
Name                           Stmts   Miss  Cover
--------------------------------------------------
jvpm/HelloWorld.py                 4      1    75%
jvpm/__init__.py                   0      0   100%
jvpm/test/__init__.py              0      0   100%
jvpm/test/test_HelloWorld.py       9      0   100%
--------------------------------------------------
TOTAL                             13      1    92%

About

3250-spring-2019-team-5 created by GitHub Classroom

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%