Unit Testing in Ignition

Is the usual unit test in python can be applied to ignition too?

[code]import unittest

class LearningCase(unittest.TestCase):
def test_starting_out(self):
self.assertEqual(1, 1)

def main():
unittest.main()

if name == “main”:
main()[/code]

Will the above code have different implementation in ignition? Or just same?

Thank you.