Ptaun
9 years agoOccasional Contributor
Large Number of Files in TestComplete Causing Memory Issue
For various internal reasons, we are moving from an external keyword driven framework to writing our test scripts in JScript within TestComplete itself. To test the scalability and the eventual performance of the framework under this architecture, we copied one of our larger files a number of times (~250). Within one of those files, we created a new function and called it with the appropriate reference:
//USEUNIT Utils250
// The function from which we kick off TestComplete
function EntryPoint()
{
NewFunction(); // Empty and exists only within Utils250
}This will take about a 1 minute to 1:30 to run, utilizing about ~90% memory usage. Is there an organizational best practice or technical strategy that would help reduce overhead? Currently, this exists within the same Project Suite.