Test plan attributes stored
Where are the test plan attributes stored?
Test plan attributes are stored in the test plan initialization file, testplan.ini, in silk test installation directory.
No related posts.
Related posts brought to you by Yet Another Related Posts Plugin.
Recent Articles
-
What is the difference between Serializalble and Externalizable interface?
When you use Serializable interface, your class is serialized automatically by default. But you can override writeObject() and readObject() two methods to control more complex object serailization process. When you use Externalizable interface, you have a complete control over your class’s serialization process. Read More...
-
How many methods in the Externalizable interface?
There are two methods in the Externalizable interface. You have to implement these two methods in order to make your class externalizable. These two methods are readExternal() and writeExternal() Read More...
-
How many methods in the Serializable interface?
There is no method in the Serializable interface. The Serializable interface acts as a marker, telling the object serialization tools that your class is serializable. Read More...
-
If a class is located in a package, what do you need to change in the OS environment to be able to use it?
You need to add a directory or a jar file that contains the package directories to the CLASSPATH environment variable. Let’s say a class Employee belongs to a package com.xyz.hr; and is located in the file c:\dev\com\xyz\hr\Employee.java. In this case, you’d need to add c:\dev to the variable CLASSPATH. If this class contains the method Read More...
-
How to define an Interface?
In Java Interface defines the methods but does not implement them. Interface can include constants. A class that implements the interfaces is bound to implement all the methods defined in Interface. Emaple of Interface: public interface sampleInterface { public void functionOne(); public long CONSTANT_ONE = 1000; } Read More...
-
Search
-
Categories
Archives
- September 2010 (3)
- August 2010 (23)
- July 2010 (18)
- June 2010 (28)
- May 2010 (29)
- April 2010 (26)
- August 2009 (7)
- July 2009 (62)
- June 2009 (752)
- May 2009 (776)
-