Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import unittest
- class Pruebas(unittest.TestCase):
- def mensaje(self):
- return 13
- def test_resultado(self):
- self.assertEqual(self.mensaje(), 13)
- if __name__ == '__main__':
- unittest.main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement