Advertisement
Fhernd

prueba-unitaria.py

Feb 20th, 2018
1,029
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.21 KB | None | 0 0
  1. import unittest
  2.  
  3. class Pruebas(unittest.TestCase):
  4.  
  5.     def mensaje(self):
  6.         return 13
  7.  
  8.     def test_resultado(self):
  9.    
  10.         self.assertEqual(self.mensaje(), 13)
  11.        
  12.  
  13. if __name__ == '__main__':
  14.     unittest.main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement