testNg invokes all test methods even i iclude only one

Skip to first unread message

unni

unread,
May 25, 2012, 5:42:40 AM5/25/12
to testng...@googlegroups.com
HI All,

I am using testNG 6.4 Webdriver (selenium standalone server) 2.20, eclipse

I have class and which has 5 methods. I include only one test method in my testng.xml and when i run it always execute all five test methods. Why not it acts base on my testng.xml

<class name="test.aTest" >
        <include name="isLinkXPresent" />
</class>

Thanks
Unni

Smita Sinha

unread,
May 25, 2012, 5:53:18 AM5/25/12
to testng...@googlegroups.com
Even I have experienced this.
You need to explicitly write the
 <Exclude name="name of the method to be excluded" />
 
I it does not find the Exclude by default it includes all the method for run.
 
Thanks,
Smita



Unni

--
You received this message because you are subscribed to the Google Groups "testng-users" group.
To view this discussion on the web visit https://groups.google.com/d/msg/testng-users/-/c6QmKCXVuygJ.
To post to this group, send email to testng...@googlegroups.com.
To unsubscribe from this group, send email to testng-users...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/testng-users?hl=en.

Cédric Beust ♔

unread,
May 25, 2012, 11:12:48 AM5/25/12
to testng...@googlegroups.com
Please post your class as well.

Thanks.

-- 
Cédric





Unni

--

Cédric Beust ♔

unread,
May 25, 2012, 11:13:09 AM5/25/12
to testng...@googlegroups.com
No, only the included method should run.

-- 
Cédric

unni

unread,
May 28, 2012, 3:05:26 AM5/28/12
to testng...@googlegroups.com
Cedric,

Please find the attached result files for the sample class.

include - demonstrate the system includes all methods of class, not the specified ones
preserve-order - never worked for me.. as you have asked sample i thought of showing that as well. It always works alphabetical order.
sample.java - though i have used proxy setting , the above issues always for normal run as well.

Thanks
Unni


On Friday, 25 May 2012 20:43:09 UTC+5:30, Cédric Beust ♔ wrote:
No, only the included method should run.

-- 
Cédric




On Fri, May 25, 2012 at 2:53 AM, Smita Sinha <sayhi....@gmail.com> wrote:
Even I have experienced this.
You need to explicitly write the
 <Exclude name="name of the method to be excluded" />
 
I it does not find the Exclude by default it includes all the method for run.
 
Thanks,
Smita


On Fri, May 25, 2012 at 3:12 PM, unni <junis...@gmail.com> wrote:
HI All,

I am using testNG 6.4 Webdriver (selenium standalone server) 2.20, eclipse

I have class and which has 5 methods. I include only one test method in my testng.xml and when i run it always execute all five test methods. Why not it acts base on my testng.xml

<class name="test.aTest" >
        <include name="isLinkXPresent" />
</class>

Thanks

Unni

--
You received this message because you are subscribed to the Google Groups "testng-users" group.
To view this discussion on the web visit https://groups.google.com/d/msg/testng-users/-/c6QmKCXVuygJ.
To post to this group, send email to testng...@googlegroups.com.
To unsubscribe from this group, send email to testng-users+unsubscribe@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/testng-users?hl=en.

--
You received this message because you are subscribed to the Google Groups "testng-users" group.
To post to this group, send email to testng...@googlegroups.com.
To unsubscribe from this group, send email to testng-users+unsubscribe@googlegroups.com.
sample.java
include.png
preserver-order-failure.png
preserver-order-failure1.png

Cédric Beust ♔

unread,
May 28, 2012, 3:14:33 AM5/28/12
to testng...@googlegroups.com
Any small test case that I could build myself? (this one seems to depend on Selenium)

-- 
Cédric




To view this discussion on the web visit https://groups.google.com/d/msg/testng-users/-/EP0Ww0Wm7LYJ.

To post to this group, send email to testng...@googlegroups.com.
To unsubscribe from this group, send email to testng-users...@googlegroups.com.

unni

unread,
May 28, 2012, 4:22:14 AM5/28/12
to testng...@googlegroups.com
I have created FirfoxProfile as my system does not work in normal way with Proxy...

You can only have the below line in the setup method
driver = new FirefoxDriver();
driver.get(url)

Krishnan Mahadevan

unread,
May 28, 2012, 5:18:36 AM5/28/12
to testng...@googlegroups.com
Unni,
I am not able to recreate this behavior that you are seeing.

Here's what works for me :

My Test class : ShowSingleExecutionOfTestMethod.java looks like this.

package raw.code;

import org.testng.annotations.Test;

public class ShowSingleExecutionOfTestMethod {
@Test
public void f1() {
System.out.println("Hello A");
}

@Test
public void f2() {
System.out.println("Hello B");
}

@Test
public void f3() {
System.out.println("Hello C");
}

@Test
public void f4() {
System.out.println("Hello D");
}

@Test
public void f5() {
System.out.println("Hello E");
}
}

My Suite file looks like this :

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="Suite" parallel="false">
  <test name="Test" preserve-order="true">
    <classes>
      <class name="raw.code.ShowSingleExecutionOfTestMethod">
      <methods>
      <include name="f3"></include>
      </methods>
      </class>
    </classes>
  </test> <!-- Test -->
</suite> <!-- Suite -->


My output looks like this : 

[TestNG] Running:
  C:\Users\krmahadevan\workspace\playground\ExperimentsWithTestNGAndSelenium\SingleMethodExecutor.xml

Hello C

===============================================
Suite
Total tests run: 1, Failures: 0, Skips: 0
===============================================


Thanks & Regards
Krishnan Mahadevan

"All the desirable things in life are either illegal, expensive, fattening or in love with someone else!"



To view this discussion on the web visit https://groups.google.com/d/msg/testng-users/-/m7VXPk9lOxsJ.

To post to this group, send email to testng...@googlegroups.com.
To unsubscribe from this group, send email to testng-users...@googlegroups.com.

unni

unread,
May 28, 2012, 6:26:17 AM5/28/12
to testng...@googlegroups.com
Yes Noticed the difference. (but when i was using Selenium RC i had the preserver-order issue.. i can hope that it resolved by this time and its working)

Its silly but i missed it. only changes is in the testng.xml, i forgot to include <methods> tag

Thanks for your sample Krishnan.

Smita Sinha

unread,
May 28, 2012, 6:45:19 AM5/28/12
to testng...@googlegroups.com
Hi,
 
I re-checked my code.
I had two groups created in my code.
Second group is dependent on first group.
 
I guess, this is the reason why the first group is always taken for execution even if I include ony the second one.
 
Thanks,
Smita

Mark Southward

unread,
May 28, 2012, 9:39:19 AM5/28/12
to testng-users
Hi,
I'm new to all this but seem to have similar issues.
If I take the example above and modify it slighty to not have the
methods alphabetical:-

package raw.code;

import org.testng.annotations.Test;

public class ShowSingleExecutionOfTestMethod {
@Test
public void z() {
System.out.println("Hello A");

}

@Test
public void t() {
System.out.println("Hello B");

}

@Test
public void h() {
System.out.println("Hello C");

}

@Test
public void a() {
System.out.println("Hello D");

}

@Test
public void x() {
System.out.println("Hello E");

}
}

The output is:-

Hello D
Hello C
Hello B
Hello E
Hello A

===============================================
Suite
Total tests run: 5, Failures: 0, Skips: 0
===============================================

and the xml file:-

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="Suite" parallel="false">
<test name="Test" preserve-order="true">
<classes>
<class name="raw.code.ShowSingleExecutionOfTestMethod">
</class>
</classes>
</test> <!-- Test -->
</suite> <!-- Suite -->

I've obviously got something wrong as I expected the output to be:-

Hello A
Hello B
Hello C
Hello D
Hello E

Thanks for any info.

Mark
> > On Mon, May 28, 2012 at 1:52 PM, unni <junistep...@gmail.com> wrote:
>
> >> I have created FirfoxProfile as my system does not work in normal way
> >> with Proxy...
>
> >> You can only have the below line in the setup method
> >> driver = new FirefoxDriver();
> >> driver.get(url)
>
> >> On Monday, 28 May 2012 12:44:33 UTC+5:30, Cédric Beust ♔ wrote:
>
> >>> Any small test case that I could build myself? (this one seems to depend
> >>> on Selenium)
>
> >>> --
> >>> Cédric
>
> >>> On Mon, May 28, 2012 at 12:05 AM, unni <junistep...@gmail.com> wrote:
>
> >>>> Cedric,
>
> >>>> Please find the attached result files for the sample class.
>
> >>>> include - demonstrate the system includes all methods of class, not the
> >>>> specified ones
> >>>> preserve-order - never worked for me.. as you have asked sample i
> >>>> thought of showing that as well. It always works alphabetical order.
> >>>> sample.java - though i have used proxy setting , the above issues
> >>>> always for normal run as well.
>
> >>>> Thanks
> >>>> Unni
>
> >>>> On Friday, 25 May 2012 20:43:09 UTC+5:30, Cédric Beust ♔ wrote:
>
> >>>>> No, only the included method should run.
>
> >>>>> --
> >>>>> Cédric
>
> >>>>> On Fri, May 25, 2012 at 2:53 AM, Smita Sinha <sayhi.gem...@gmail.com>wrote:
>
> >>>>>> Even I have experienced this.
> >>>>>> You need to explicitly write the
> >>>>>>  <Exclude name="name of the method to be excluded" />
>
> >>>>>> I it does not find the Exclude by default it includes all the method
> >>>>>> for run.
>
> >>>>>> Thanks,
> >>>>>> Smita
>
> >>>>>>  On Fri, May 25, 2012 at 3:12 PM, unni <junistep...@gmail.com> wrote:
>
> >>>>>>> HI All,
>
> >>>>>>> I am using testNG 6.4 Webdriver (selenium standalone server) 2.20,
> >>>>>>> eclipse
>
> >>>>>>> I have class and which has 5 methods. I include only one test method
> >>>>>>> in my testng.xml and when i run it always execute all five test methods.
> >>>>>>> Why not it acts base on my testng.xml
>
> >>>>>>> <class name="test.aTest" >
> >>>>>>>         <include name="isLinkXPresent" />
> >>>>>>> </class>
>
> >>>>>>> Thanks
> >>>>>>> Unni
>
> >>>>>>> --
> >>>>>>> You received this message because you are subscribed to the Google
> >>>>>>> Groups "testng-users" group.
> >>>>>>> To view this discussion on the web visit
> >>>>>>>https://groups.google.com/d/**ms**g/testng-users/-/**c6QmKCXVuygJ<https://groups.google.com/d/msg/testng-users/-/c6QmKCXVuygJ>
> >>>>>>> .
> >>>>>>> To post to this group, send email to testng...@googlegroups.com.
> >>>>>>> To unsubscribe from this group, send email to
> >>>>>>> testng-users+unsubscribe@**googl**egroups.com<testng-users%2Bunsu...@googlegroups.com>
> >>>>>>> .
> >>>>>>> For more options, visit this group athttp://groups.google.com/**
> >>>>>>> group**/testng-users?hl=en<http://groups.google.com/group/testng-users?hl=en>
> >>>>>>> .
>
> >>>>>> --
> >>>>>> You received this message because you are subscribed to the Google
> >>>>>> Groups "testng-users" group.
> >>>>>> To post to this group, send email to testng...@googlegroups.com.
> >>>>>> To unsubscribe from this group, send email to
> >>>>>> testng-users+unsubscribe@**googl**egroups.com<testng-users%2Bunsu...@googlegroups.com>
> >>>>>> .
> >>>>>> For more options, visit this group athttp://groups.google.com/**
> >>>>>> group**/testng-users?hl=en<http://groups.google.com/group/testng-users?hl=en>
> >>>>>> .
>
> >>>>> --
> >>>> You received this message because you are subscribed to the Google
> >>>> Groups "testng-users" group.
> >>>> To view this discussion on the web visithttps://groups.google.com/d/**
> >>>> msg/testng-users/-/**EP0Ww0Wm7LYJ<https://groups.google.com/d/msg/testng-users/-/EP0Ww0Wm7LYJ>.
>
> >>>> To post to this group, send email to testng...@googlegroups.com.
> >>>> To unsubscribe from this group, send email to testng-users+unsubscribe@
> >>>> **googlegroups.com <testng-users%2Bunsu...@googlegroups.com>.
> >>>> For more options, visit this group athttp://groups.google.com/**
> >>>> group/testng-users?hl=en<http://groups.google.com/group/testng-users?hl=en>
> >>>> .
>
> >>  On Monday, 28 May 2012 12:44:33 UTC+5:30, Cédric Beust ♔ wrote:
>
> >>> Any small test case that I could build myself? (this one seems to depend
> >>> on Selenium)
>
> >>> --
> >>> Cédric
>
> >>> On Mon, May 28, 2012 at 12:05 AM, unni <junistep...@gmail.com> wrote:
>
> >>>> Cedric,
>
> >>>> Please find the attached result files for the sample class.
>
> >>>> include - demonstrate the system includes all methods of class, not the
> >>>> specified ones
> >>>> preserve-order - never worked for me.. as you have asked sample i
> >>>> thought of showing that as well. It always works alphabetical order.
> >>>> sample.java - though i have used proxy setting , the above issues
> >>>> always for normal run as well.
>
> >>>> Thanks
> >>>> Unni
>
> >>>> On Friday, 25 May 2012 20:43:09 UTC+5:30, Cédric Beust ♔ wrote:
>
> >>>>> No, only the included method should run.
>
> >>>>> --
> >>>>> Cédric
>
> >>>>> On Fri, May 25, 2012 at 2:53 AM, Smita Sinha <sayhi.gem...@gmail.com>wrote:
>
> >>>>>> Even I have experienced this.
> >>>>>> You need to explicitly write the
> >>>>>>  <Exclude name="name of the method to be excluded" />
>
> >>>>>> I it does not find the Exclude by default it includes all the method
> >>>>>> for run.
>
> >>>>>> Thanks,
> >>>>>> Smita
>
> >>>>>>  On Fri, May 25, 2012 at 3:12 PM, unni <junistep...@gmail.com> wrote:
>
> >>>>>>> HI All,
>
> >>>>>>> I am using testNG 6.4 Webdriver (selenium standalone server) 2.20,
> >>>>>>> eclipse
>
> >>>>>>> I have class and which has 5 methods. I include only one test method
> >>>>>>> in my testng.xml and when i run it always execute all five test methods.
> >>>>>>> Why not it acts base on my testng.xml
>
> >>>>>>> <class name="test.aTest" >
> >>>>>>>         <include name="isLinkXPresent" />
> >>>>>>> </class>
>
> >>>>>>> Thanks
> >>>>>>> Unni
>
> >>>>>>> --
> >>>>>>> You received this message because you are subscribed to the Google
> >>>>>>> Groups "testng-users" group.
> >>>>>>> To view this discussion on the web visit
> >>>>>>>https://groups.google.com/d/**ms**g/testng-users/-/**c6QmKCXVuygJ<https://groups.google.com/d/msg/testng-users/-/c6QmKCXVuygJ>
> >>>>>>> .
> >>>>>>> To post to this group, send email to testng...@googlegroups.com.
> >>>>>>> To unsubscribe from this group, send email to
> >>>>>>> testng-users+unsubscribe@**googl**egroups.com<testng-users%2Bunsu...@googlegroups.com>
> >>>>>>> .
> >>>>>>> For more options, visit this group athttp://groups.google.com/**
> >>>>>>> group**/testng-users?hl=en<http://groups.google.com/group/testng-users?hl=en>
> >>>>>>> .
>
> >>>>>> --
> >>>>>> You received this message because you are subscribed to the Google
> >>>>>> Groups "testng-users" group.
> >>>>>> To post to this group, send email to testng...@googlegroups.com.
> >>>>>> To unsubscribe from this group, send email to
> >>>>>> testng-users+unsubscribe@**googl**egroups.com<testng-users%2Bunsu...@googlegroups.com>
> >>>>>> .
> >>>>>> For more options, visit this group athttp://groups.google.com/**
> >>>>>> group**/testng-users?hl=en<http://groups.google.com/group/testng-users?hl=en>
> >>>>>> .
>
> >>>>> --
> >>>> You received this message because you are subscribed to the Google
> >>>> Groups "testng-users" group.
> >>>> To view this discussion on the web visithttps://groups.google.com/d/**
> >>>> msg/testng-users/-/**EP0Ww0Wm7LYJ<https://groups.google.com/d/msg/testng-users/-/EP0Ww0Wm7LYJ>.
>
> >>>> To post to this group, send email to testng...@googlegroups.com.
> >>>> To unsubscribe from this group, send email to testng-users+unsubscribe@
>
> ...
>
> read more »

Krishnan Mahadevan

unread,
May 28, 2012, 1:39:45 PM5/28/12
to testng...@googlegroups.com
Mark,
You only have 1 class. Not sure if preserve-order has any relevance when there is just 1 class involved. 
What exactly are you trying to achieve? Looks like Testng sorted your test methods before executing them. 
> >>>>>> group**/testng-> >>>>>> .
>
> >>>>> --
> >> <


--
Thanks & Regards
Krishnan Mahadevan

"All the desirable things in life are either illegal, expensive, fattening or in love with someone else!"
My Scribblings @ http://wakened-cognition.blogspot.com/

Mark Southward

unread,
May 28, 2012, 2:13:46 PM5/28/12
to testng-users
Hi,
Thanks for the reply.

This wasn't my original problem - I originally had a package with 3
classes where I had this behavior. Even if I put includes (wrappped in
a methods tag), I couldn't get it to stay in the order I wanted. Your
example helped me to isolate it to, as you say, testng doing an
alphabetic sort.

Why wouldn't the preserve-order work on a single class?

Thanks,
Mark

On May 28, 6:39 pm, Krishnan Mahadevan
> > On May 28, 11:45 am, Smita Sinha <sayhi.gem...@gmail.com <javascript:;>>
> > wrote:
> > > Hi,
>
> > > I re-checked my code.
> > > I had two groups created in my code.
> > > Second group is dependent on first group.
>
> > > I guess, this is the reason why the first group is always taken for
> > > execution even if I include ony the second one.
>
> > > Thanks,
> > > Smita
>
> > > On Mon, May 28, 2012 at 2:48 PM, Krishnan Mahadevan <
>
> > > > On Mon, May 28, 2012 at 1:52 PM, unni <junistep...@gmail.com<javascript:;>>
> > wrote:
>
> > > >> I have created FirfoxProfile as my system does not work in normal way
> > > >> with Proxy...
>
> > > >> You can only have the below line in the setup method
> > > >> driver = new FirefoxDriver();
> > > >> driver.get(url)
>
> > > >> On Monday, 28 May 2012 12:44:33 UTC+5:30, Cédric Beust ♔ wrote:
>
> > > >>> Any small test case that I could build myself? (this one seems to
> > depend
> > > >>> on Selenium)
>
> > > >>> --
> > > >>> Cédric
>
> > > >>> On Mon, May 28, 2012 at 12:05 AM, unni <junistep...@gmail.com<javascript:;>>
> > wrote:
>
> > > >>>> Cedric,
>
> > > >>>> Please find the attached result files for the sample class.
>
> > > >>>> include - demonstrate the system includes all methods of class, not
> > the
> > > >>>> specified ones
> > > >>>> preserve-order - never worked for me.. as you have asked sample i
> > > >>>> thought of showing that as well. It always works alphabetical order.
> > > >>>> sample.java - though i have used proxy setting , the above issues
> > > >>>> always for normal run as well.
>
> > > >>>> Thanks
> > > >>>> Unni
>
> > > >>>> On Friday, 25 May 2012 20:43:09 UTC+5:30, Cédric Beust ♔ wrote:
>
> > > >>>>> No, only the included method should run.
>
> > > >>>>> --
> > > >>>>> Cédric
>
> > > >>>>> On Fri, May 25, 2012 at 2:53 AM, Smita Sinha <
> > sayhi.gem...@gmail.com <javascript:;>>wrote:
>
> > > >>>>>> Even I have experienced this.
> > > >>>>>> You need to explicitly write the
> > > >>>>>>  <Exclude name="name of the method to be excluded" />
>
> > > >>>>>> I it does not find the Exclude by default it includes all the
> > method
> > > >>>>>> for run.
>
> > > >>>>>> Thanks,
> > > >>>>>> Smita
>
> > > >>>>>>  On Fri, May 25, 2012 at 3:12 PM, unni <junistep...@gmail.com<javascript:;>>
> > wrote:
>
> > > >>>>>>> HI All,
>
> > > >>>>>>> I am using testNG 6.4 Webdriver (selenium standalone server)
> > 2.20,
> > > >>>>>>> eclipse
>
> > > >>>>>>> I have class and which has 5 methods. I include only one test
> > method
> > > >>>>>>> in my testng.xml and when i run it always execute all five test
> > methods.
> > > >>>>>>> Why not it acts base on my testng.xml
>
> > > >>>>>>> <class name="test.aTest" >
> > > >>>>>>>         <include name="isLinkXPresent" />
> > > >>>>>>> </class>
>
> > > >>>>>>> Thanks
> > > >>>>>>> Unni
>
> > > >>>>>>> --
> > > >>>>>>> You received this message because you are subscribed to the
> > Google
> > > >>>>>>> Groups "testng-users" group.
> > > >>>>>>> To view this discussion on the web visit
> > > >>>>>>>https://groups.google.com/d/**ms**g/testng-users/-/**c6QmKCXVuygJ
> > <https://groups.google.com/d/msg/testng-users/-/c6QmKCXVuygJ>
> > > >>>>>>> .
> > > >>>>>>> To post to this group, send email to
> > testng...@googlegroups.com <javascript:;>.
> > > >>>>>>> To unsubscribe from this group, send email to
> > > >>>>>>> testng-users+unsubscribe@**googl**egroups.com<
> > testng-users%2Bunsu...@googlegroups.com <javascript:;>>
> > > >>>>>>> .
> > > >>>>>>> For more options, visit this group athttp://groups.google.com/**
> > > >>>>>>> group**/testng-users?hl=en<
> >http://groups.google.com/group/testng-users?hl=en>
> > > >>>>>>> .
>
> > > >>>>>> --
> > > >>>>>> You received this message because you are subscribed to the Google
> > > >>>>>> Groups "testng-users" group.
> > > >>>>>> To post to this group, send email to
> > testng...@googlegroups.com <javascript:;>.
> > > >>>>>> To unsubscribe from this group, send email to
> > > >>>>>> testng-users+unsubscribe@**googl**egroups.com<
> > testng-users%2Bunsu...@googlegroups.com <javascript:;>>
> > > >>>>>> .
> > > >>>>>> For more options, visit this group athttp://groups.google.com/**
> > > >>>>>> group**/testng-users?hl=en<
> >http://groups.google.com/group/testng-users?hl=en>
> > > >>>>>> .
>
> > > >>>>> --
> > > >>>> You received this message because you are subscribed to the Google
> > > >>>> Groups "testng-users" group.
> > > >>>> To view this discussion on the web visithttps://
> > groups.google.com/d/**
> > > >>>> msg/testng-users/-/**EP0Ww0Wm7LYJ<
> >https://groups.google.com/d/msg/testng-users/-/EP0Ww0Wm7LYJ>.
>
> > > >>>> To post to this group, send email to testng...@googlegroups.com<javascript:;>
> > .
> > > >>>> To unsubscribe from this group, send email to
> > testng-users+unsubscribe@
> > > >>>> **googlegroups.com <testng-users%2Bunsu...@googlegroups.com<javascript:;>
> > >.
> > > >>>> For more options, visit this group athttp://groups.google.com/**
> > > >>>> group/testng-users?hl=en<
> >http://groups.google.com/group/testng-users?hl=en>
> > > >>>> .
>
> > > >>  On Monday, 28 May 2012 12:44:33 UTC+5:30, Cédric Beust ♔ wrote:
>
> > > >>> Any small test case that I could build myself? (this one seems to
> > depend
> > > >>> on Selenium)
>
> > > >>> --
> > > >>> Cédric
>
> > > >>> On Mon, May 28, 2012 at 12:05 AM, unni <junistep...@gmail.com<javascript:;>>
> > wrote:
>
> > > >>>> Cedric,
>
> > > >>>> Please find the attached result files for the sample class.
>
> > > >>>> include - demonstrate the system includes all methods of class, not
> > the
> > > >>>> specified ones
> > > >>>> preserve-order - never worked for me.. as you have asked sample i
> > > >>>> thought of showing that as well. It always works alphabetical order.
> > > >>>> sample.java - though i have used proxy setting , the above issues
> > > >>>> always for normal run as well.
>
> > > >>>> Thanks
> > > >>>> Unni
>
> > > >>>> On Friday, 25 May 2012 20:43:09 UTC+5:30, Cédric Beust ♔ wrote:
>
> > > >>>>> No, only the included method should run.
>
> > > >>>>> --
> > > >>>>> Cédric
>
> > > >>>>> On Fri, May 25, 2012 at 2:53 AM, Smita Sinha <
> > sayhi.gem...@gmail.com <javascript:;>>wrote:
>
> > > >>>>>> Even I have
>
> ...
>
> read more »

Mark Southward

unread,
May 28, 2012, 5:21:11 PM5/28/12
to testng-users
Ok, I think I've sorted it.

I don't know why but the includes didn't seem to work in my project
but seem to work fine in the simple case (even with more than 1
class), so my error I guess.

I have lots of other questions but will post those in a separate
thread(s).

Thanks,
Mark
> ...
>
> read more »
Reply all
Reply to author
Forward
0 new messages