Skip to content
Snippets Groups Projects
Select Git revision
  • 9168a14dd139f4b2578b7862e7a332ba62e6e8d3
  • master default protected
  • dither_on_off_disabled
  • yocto
  • pypcc2
  • pypcc3
  • 2020-12-07-the_only_working_copy
  • v2.0
  • v1.0
  • v0.9
  • Working-RCU_ADC,ID
  • 2020-12-11-Holiday_Season_release
12 results

testHBA2_pico.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    test_cool_module.py 309 B
    """Testing of the Cool Module"""
    from unittest import TestCase
    
    from map.cool_module import greeter
    
    
    class TestCoolModule(TestCase):
        """Test Case of the Cool Module"""
    
        def test_greeter(self):
            """Testing that the greeter does not crash"""
            greeter()
            self.assertEqual(2 + 2, 4)