What are the advantages and disadvantages of compiled module?

Questions by kavitha_pendkar   answers by kavitha_pendkar

Showing Answers 1 - 3 of 3 Answers

rashwin

  • Feb 9th, 2006
 

    A compiled module is a script containing a library of user-defined functions that you want to call frequently from other tests. When you load a compiled module, its functions are automatically compiled and remain in memory. You can call them directly from within any test.

 

 Compiled modules can improve the organization and performance of your tests. Since you debug compiled modules before using them, your tests will require less error-checking. In addition, calling a function that is already compiled is significantly faster than interpreting a function in a test script.

  Was this answer useful?  Yes

satya.k

  • Feb 9th, 2006
 

Hi

Compiled Module:

        The Complied module is a script contained a library of user defiend functions. we can call it any where in the TSL Script..

Compiled modules can improve the organization and performance of your tests. Since you debug compiled modules before using them, your tests will require less error-checking. In addition, calling a function that is already compiled is significantly faster than interpreting a function in a test script.

 

Bye

satya.k

 

    

  Was this answer useful?  Yes

Senthil Kumar P

  • Sep 14th, 2006
 

Advantages

Disadvantages

Complied module is already loaded in memory.

It is available whenever you need it in any part of test like a ready made shirt

It execute very fast than other functions

It requires less error checking  

It always loaded into memory. If it?s very large it occupies more memory and slow down the test execution

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions