Tagged in

Software Development

New Light Technologies, Inc. (NLT
New Light Technologies, Inc. (NLT
New Light Technologies (NLT) provides enterprise information solutions that combine Information Technology (IT) ingenuity and industry intelligence to drive high-performance results for our clients. We help commercial companies and governments at the federal, state, and local
More information
Followers
24
Elsewhere
More, on Medium

More unittest Features

Last time, we moved the tests for our test-driven factorial function from basic assert statements to being run by Python’s unittest module:

import unittest
from factorial import factorial
class TestFactorial(unittest.TestCase):