ashok ks

Ranch Hand
+ Follow
since Oct 31, 2003
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by ashok ks

Hi Ilja Preuss, i don't want to use JUnit. I want to test
I will call the meth in another java class and print its return value.
20 years ago
public class Hai {
public Hai meth(String st){
.......
return this; }
}
i want to unit test the above meth (what it returns), thru another java class ? How can i do that ?
20 years ago
What is the difference between task and target in Ant ?
20 years ago
public class B {
static String[] s1;
static String[] s2;
private String a;
private String b;
private String c=null;
.
.
public static void main(String args[]) {
for( int r=0; r< s1.length; r++) {
for(int t=0; t< s2.length; t++) {
foo(s1[r], s2[t]); // forming string arrays s1 & s2
}
}
} // main - end
public void method()

{

A a1 = new A();

String kd = a1.foo(a, b, c);
}
} // class - end
*******************************************************
public class A {
public String foo(String a, String b, String c)
{
return "hai";
}
}
**************************************************
class B's foo(s1[r], s2[t]) shows the compilation error ? why ?
20 years ago
What is the use of using main() in the java class ?
20 years ago
whether log4j supports client side logging ?
Whether JUnit supports XML comparison ?
20 years ago
what is the advantage of using JUnit with apache's cactus ?
20 years ago
what is the meaning of 'this' in the following hai(this) here hai is the methood name.
20 years ago
When i import a directory thru File -> Import option in Ecplipse, it shows OutOfMemoryError, Why?
Thanks.
Whether JUnit reduces the testing part coding compared with the own java test programs ?
20 years ago
How can i integrate Eclipse with the WinCVS ?
Whether junit's AssertEquals(a,b) checks all types(int.short,String,char,...etc) of a&b ?
20 years ago
getmethods return value is String. It's in the Singleton class and it has getInstance().
I have a plan to write separate java pgm to access this get method that return String.
How can i access this getmethod() ?
20 years ago
How can i unit test the singleton class get methods that return String type ?
20 years ago