Maximum number of tests in an XML

classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

Maximum number of tests in an XML

bhargavikanchiraju
hello tarun,

was just going through testNg stuff online,just wanted to know how many tests can  an testNg.xml be loaded with? is there any maximum number of tests for each suite?
Reply | Threaded
Open this post in threaded view
|

Re: Maximum number of tests in an XML

softwaretestingforum
Administrator
I suppose it boils down to java heap size available on the system. Heap is the memory space where memory is allocated to java objects. Hence there may not be any universal answer of your question as it depends on how much heap size would be available for classes. And then as many tests (which in turn contain classes or packages) can be provided in testng.xml file.

Does it answer your question?
~ seleniumtests.com
Reply | Threaded
Open this post in threaded view
|

Re: Maximum number of tests in an XML

bhargavikanchiraju
Yes Tarun ! thanks !