DKumar04
6 years agoContributor
How testcomplete works with scripts not being written inside the class?
My question is if I have written my scripts using python. Let consider the below example
# example1.py
def test():
print "hello world"
# example2.py
class sampletest:
def test():
print "hello world"
In the above examples, one being wriiten without class and other within class. I was surprised how testcomplete works with first example .
Keep in mind... this is Python SCRIPT, not full Python. Not everything needs to have a class to be able to execute. You can use classes, but they are not required for execution of functions.