[JIRA] (JENKINS-12916) Can't assign testng results to the testlink by Test Methode Name(only by Java Class )

2012-03-13 Thread brunodepau...@yahoo.com.br (JIRA)

 [ 
https://issues.jenkins-ci.org/browse/JENKINS-12916?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Bruno P. Kinoshita closed JENKINS-12916.



Fixed in 3.1.1

 Can't assign testng results to the testlink by Test Methode  Name(only by 
 Java Class )
 --

 Key: JENKINS-12916
 URL: https://issues.jenkins-ci.org/browse/JENKINS-12916
 Project: Jenkins
  Issue Type: Bug
  Components: testlink
 Environment: WinXP: Jenkins (org.jenkins-ci.main:jenkins-war:1.449), 
 Jenkins TestLink Plugin (3.0.2), TestNG Lib (6.4),TestLink 1.9.3 (Prague) 
Reporter: Nikolay Myakushkin
Assignee: Bruno P. Kinoshita
 Attachments: testlink-3.1-alpha2.hpi, testlink_settings.png, 
 testng-results.xml, testng-resultstestlinkwithsubs.xml


 I'm using testlink plugin for my project. It is very useful and easy to use. 
 Thanks to the authors. But I have some suggestion. 
 1.As I understand, test results from testng-results.xml are mapped to the 
 tests only  by Java Class Custom field. Do I have any way to map them by 
 test-methode?
 2.And one more question: I'm using dataproviders in my tests. Do I have any 
 mechanism to map the pairs (test-methode,dataprovider Object[]) to the tests.
 I mean if I have 
 @DataProvider(name = test1)
 public Object[][] createData1() {
  return new Object[][] {
{ Cedric, new Integer(36) },
{ Anne, new Integer(37)},
  };
 }
  
 //This test method declares that its data should be supplied by the Data 
 Provider
 //named test1
 @Test(dataProvider = test1)
 public void verifyData1(String n1, Integer n2) {
  AssertJUnit.assertTrue( n1.equals(Anne));
 }
 And I have 2 test in Testlink: 1. for { Cedric, new Integer(36) }, 2. for  
 { Anne, new Integer(37)}.
 And the results should map to each test

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.jenkins-ci.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[JIRA] (JENKINS-12916) Can't assign testng results to the testlink by Test Methode Name(only by Java Class )

2012-03-12 Thread nicolas_myakush...@yahoo.com (JIRA)

 [ 
https://issues.jenkins-ci.org/browse/JENKINS-12916?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Nikolay Myakushkin reopened JENKINS-12916:
--


Hello, Bruno, 
Sorry, I didnt have time to check alpha release, I was in vacation.
Today, I have tried to check assigned test results by test methode name.  But 
testlink plugin(3.1) didn't find test results in testng-results.xm (Found 0 
test result(s).)

 Can't assign testng results to the testlink by Test Methode  Name(only by 
 Java Class )
 --

 Key: JENKINS-12916
 URL: https://issues.jenkins-ci.org/browse/JENKINS-12916
 Project: Jenkins
  Issue Type: Bug
  Components: testlink
 Environment: WinXP: Jenkins (org.jenkins-ci.main:jenkins-war:1.449), 
 Jenkins TestLink Plugin (3.0.2), TestNG Lib (6.4),TestLink 1.9.3 (Prague) 
Reporter: Nikolay Myakushkin
Assignee: Bruno P. Kinoshita
 Attachments: testlink-3.1-alpha2.hpi


 I'm using testlink plugin for my project. It is very useful and easy to use. 
 Thanks to the authors. But I have some suggestion. 
 1.As I understand, test results from testng-results.xml are mapped to the 
 tests only  by Java Class Custom field. Do I have any way to map them by 
 test-methode?
 2.And one more question: I'm using dataproviders in my tests. Do I have any 
 mechanism to map the pairs (test-methode,dataprovider Object[]) to the tests.
 I mean if I have 
 @DataProvider(name = test1)
 public Object[][] createData1() {
  return new Object[][] {
{ Cedric, new Integer(36) },
{ Anne, new Integer(37)},
  };
 }
  
 //This test method declares that its data should be supplied by the Data 
 Provider
 //named test1
 @Test(dataProvider = test1)
 public void verifyData1(String n1, Integer n2) {
  AssertJUnit.assertTrue( n1.equals(Anne));
 }
 And I have 2 test in Testlink: 1. for { Cedric, new Integer(36) }, 2. for  
 { Anne, new Integer(37)}.
 And the results should map to each test

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.jenkins-ci.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[JIRA] (JENKINS-12916) Can't assign testng results to the testlink by Test Methode Name(only by Java Class )

2012-03-12 Thread brunodepau...@yahoo.com.br (JIRA)

[ 
https://issues.jenkins-ci.org/browse/JENKINS-12916?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=160151#comment-160151
 ] 

Bruno P. Kinoshita commented on JENKINS-12916:
--

Hi Nikolay! Hope you enjoyed your vacations :-)

Could you attach the testng-results.xml file as well, please? And maybe a 
sample test case in TestLink.

That would be helpful.

Thanks for your feedback

 Can't assign testng results to the testlink by Test Methode  Name(only by 
 Java Class )
 --

 Key: JENKINS-12916
 URL: https://issues.jenkins-ci.org/browse/JENKINS-12916
 Project: Jenkins
  Issue Type: Bug
  Components: testlink
 Environment: WinXP: Jenkins (org.jenkins-ci.main:jenkins-war:1.449), 
 Jenkins TestLink Plugin (3.0.2), TestNG Lib (6.4),TestLink 1.9.3 (Prague) 
Reporter: Nikolay Myakushkin
Assignee: Bruno P. Kinoshita
 Attachments: testlink-3.1-alpha2.hpi, testlink_settings.png


 I'm using testlink plugin for my project. It is very useful and easy to use. 
 Thanks to the authors. But I have some suggestion. 
 1.As I understand, test results from testng-results.xml are mapped to the 
 tests only  by Java Class Custom field. Do I have any way to map them by 
 test-methode?
 2.And one more question: I'm using dataproviders in my tests. Do I have any 
 mechanism to map the pairs (test-methode,dataprovider Object[]) to the tests.
 I mean if I have 
 @DataProvider(name = test1)
 public Object[][] createData1() {
  return new Object[][] {
{ Cedric, new Integer(36) },
{ Anne, new Integer(37)},
  };
 }
  
 //This test method declares that its data should be supplied by the Data 
 Provider
 //named test1
 @Test(dataProvider = test1)
 public void verifyData1(String n1, Integer n2) {
  AssertJUnit.assertTrue( n1.equals(Anne));
 }
 And I have 2 test in Testlink: 1. for { Cedric, new Integer(36) }, 2. for  
 { Anne, new Integer(37)}.
 And the results should map to each test

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.jenkins-ci.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[JIRA] (JENKINS-12916) Can't assign testng results to the testlink by Test Methode Name(only by Java Class )

2012-03-12 Thread nicolas_myakush...@yahoo.com (JIRA)

[ 
https://issues.jenkins-ci.org/browse/JENKINS-12916?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=160152#comment-160152
 ] 

Nikolay Myakushkin commented on JENKINS-12916:
--

All tests in testlink have Custom Fileds : Java Class, Automated, Test Methode 
Name.

I think that I'M working wrong with Custom Fileds?

 Can't assign testng results to the testlink by Test Methode  Name(only by 
 Java Class )
 --

 Key: JENKINS-12916
 URL: https://issues.jenkins-ci.org/browse/JENKINS-12916
 Project: Jenkins
  Issue Type: Bug
  Components: testlink
 Environment: WinXP: Jenkins (org.jenkins-ci.main:jenkins-war:1.449), 
 Jenkins TestLink Plugin (3.0.2), TestNG Lib (6.4),TestLink 1.9.3 (Prague) 
Reporter: Nikolay Myakushkin
Assignee: Bruno P. Kinoshita
 Attachments: testlink-3.1-alpha2.hpi, testlink_settings.png


 I'm using testlink plugin for my project. It is very useful and easy to use. 
 Thanks to the authors. But I have some suggestion. 
 1.As I understand, test results from testng-results.xml are mapped to the 
 tests only  by Java Class Custom field. Do I have any way to map them by 
 test-methode?
 2.And one more question: I'm using dataproviders in my tests. Do I have any 
 mechanism to map the pairs (test-methode,dataprovider Object[]) to the tests.
 I mean if I have 
 @DataProvider(name = test1)
 public Object[][] createData1() {
  return new Object[][] {
{ Cedric, new Integer(36) },
{ Anne, new Integer(37)},
  };
 }
  
 //This test method declares that its data should be supplied by the Data 
 Provider
 //named test1
 @Test(dataProvider = test1)
 public void verifyData1(String n1, Integer n2) {
  AssertJUnit.assertTrue( n1.equals(Anne));
 }
 And I have 2 test in Testlink: 1. for { Cedric, new Integer(36) }, 2. for  
 { Anne, new Integer(37)}.
 And the results should map to each test

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.jenkins-ci.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[JIRA] (JENKINS-12916) Can't assign testng results to the testlink by Test Methode Name(only by Java Class )

2012-03-12 Thread nicolas_myakush...@yahoo.com (JIRA)

 [ 
https://issues.jenkins-ci.org/browse/JENKINS-12916?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Nikolay Myakushkin updated JENKINS-12916:
-

Attachment: testlink_settings.png

My Testlink settings

 Can't assign testng results to the testlink by Test Methode  Name(only by 
 Java Class )
 --

 Key: JENKINS-12916
 URL: https://issues.jenkins-ci.org/browse/JENKINS-12916
 Project: Jenkins
  Issue Type: Bug
  Components: testlink
 Environment: WinXP: Jenkins (org.jenkins-ci.main:jenkins-war:1.449), 
 Jenkins TestLink Plugin (3.0.2), TestNG Lib (6.4),TestLink 1.9.3 (Prague) 
Reporter: Nikolay Myakushkin
Assignee: Bruno P. Kinoshita
 Attachments: testlink-3.1-alpha2.hpi, testlink_settings.png


 I'm using testlink plugin for my project. It is very useful and easy to use. 
 Thanks to the authors. But I have some suggestion. 
 1.As I understand, test results from testng-results.xml are mapped to the 
 tests only  by Java Class Custom field. Do I have any way to map them by 
 test-methode?
 2.And one more question: I'm using dataproviders in my tests. Do I have any 
 mechanism to map the pairs (test-methode,dataprovider Object[]) to the tests.
 I mean if I have 
 @DataProvider(name = test1)
 public Object[][] createData1() {
  return new Object[][] {
{ Cedric, new Integer(36) },
{ Anne, new Integer(37)},
  };
 }
  
 //This test method declares that its data should be supplied by the Data 
 Provider
 //named test1
 @Test(dataProvider = test1)
 public void verifyData1(String n1, Integer n2) {
  AssertJUnit.assertTrue( n1.equals(Anne));
 }
 And I have 2 test in Testlink: 1. for { Cedric, new Integer(36) }, 2. for  
 { Anne, new Integer(37)}.
 And the results should map to each test

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.jenkins-ci.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[JIRA] (JENKINS-12916) Can't assign testng results to the testlink by Test Methode Name(only by Java Class )

2012-03-12 Thread nicolas_myakush...@yahoo.com (JIRA)

[ 
https://issues.jenkins-ci.org/browse/JENKINS-12916?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=160149#comment-160149
 ] 

Nikolay Myakushkin edited comment on JENKINS-12916 at 3/12/12 3:06 PM:
---

Hello, Bruno, 
Sorry, I didnt have time to check alpha release, I was in vacation.
Today, I have tried to check assigned test results by test methode name.  But 
testlink plugin(3.1) didn't find test results in testng-results.xm (Found 0 
test result(s).)

Below is console log.

Preparing TestLink client API.
Using TestLink URL: http://localhost:8000/lib/api/xmlrpc.php

Found 25 automated test cases in TestLink.

Sorting automated test cases by TestLink test plan execution order.

Executing single Build Steps.

Executing iterative Build Steps.

Looking for the test results of TestLink test cases.

Looking for test results in TestNG suites.

Found 0 test result(s).

TestNG Reports Processing: START
Looking for TestNG results report in workspace using pattern: 
**/target/surefire-reports/testng-results.xml
Saving reports...
Processing 
'C:\dev\JENKINS_HOME\jobs\Manager\builds\2012-03-12_17-52-36\testng\testng-results.xml'
TestNG Reports Processing: FINISH

  was (Author: anm110c):
Hello, Bruno, 
Sorry, I didnt have time to check alpha release, I was in vacation.
Today, I have tried to check assigned test results by test methode name.  But 
testlink plugin(3.1) didn't find test results in testng-results.xm (Found 0 
test result(s).)
  
 Can't assign testng results to the testlink by Test Methode  Name(only by 
 Java Class )
 --

 Key: JENKINS-12916
 URL: https://issues.jenkins-ci.org/browse/JENKINS-12916
 Project: Jenkins
  Issue Type: Bug
  Components: testlink
 Environment: WinXP: Jenkins (org.jenkins-ci.main:jenkins-war:1.449), 
 Jenkins TestLink Plugin (3.0.2), TestNG Lib (6.4),TestLink 1.9.3 (Prague) 
Reporter: Nikolay Myakushkin
Assignee: Bruno P. Kinoshita
 Attachments: testlink-3.1-alpha2.hpi


 I'm using testlink plugin for my project. It is very useful and easy to use. 
 Thanks to the authors. But I have some suggestion. 
 1.As I understand, test results from testng-results.xml are mapped to the 
 tests only  by Java Class Custom field. Do I have any way to map them by 
 test-methode?
 2.And one more question: I'm using dataproviders in my tests. Do I have any 
 mechanism to map the pairs (test-methode,dataprovider Object[]) to the tests.
 I mean if I have 
 @DataProvider(name = test1)
 public Object[][] createData1() {
  return new Object[][] {
{ Cedric, new Integer(36) },
{ Anne, new Integer(37)},
  };
 }
  
 //This test method declares that its data should be supplied by the Data 
 Provider
 //named test1
 @Test(dataProvider = test1)
 public void verifyData1(String n1, Integer n2) {
  AssertJUnit.assertTrue( n1.equals(Anne));
 }
 And I have 2 test in Testlink: 1. for { Cedric, new Integer(36) }, 2. for  
 { Anne, new Integer(37)}.
 And the results should map to each test

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.jenkins-ci.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[JIRA] (JENKINS-12916) Can't assign testng results to the testlink by Test Methode Name(only by Java Class )

2012-03-12 Thread brunodepau...@yahoo.com.br (JIRA)

[ 
https://issues.jenkins-ci.org/browse/JENKINS-12916?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=160155#comment-160155
 ] 

Bruno P. Kinoshita commented on JENKINS-12916:
--

It depends on the way you're using them :-) 

I think it will help if I explain how the TestNG method name strategy works. 

This strategy works by parsing the TestNG XML files, concatenating 
package.classname#methodname, and then matching against each automated 
test case from Testlink.

It means that in TestLink, your test case would have a custom field value (the 
key custom field) equals to something like 
com.example.MyAutomatedTest#testSomething

Let me know if that helps :-)

 Can't assign testng results to the testlink by Test Methode  Name(only by 
 Java Class )
 --

 Key: JENKINS-12916
 URL: https://issues.jenkins-ci.org/browse/JENKINS-12916
 Project: Jenkins
  Issue Type: Bug
  Components: testlink
 Environment: WinXP: Jenkins (org.jenkins-ci.main:jenkins-war:1.449), 
 Jenkins TestLink Plugin (3.0.2), TestNG Lib (6.4),TestLink 1.9.3 (Prague) 
Reporter: Nikolay Myakushkin
Assignee: Bruno P. Kinoshita
 Attachments: testlink-3.1-alpha2.hpi, testlink_settings.png


 I'm using testlink plugin for my project. It is very useful and easy to use. 
 Thanks to the authors. But I have some suggestion. 
 1.As I understand, test results from testng-results.xml are mapped to the 
 tests only  by Java Class Custom field. Do I have any way to map them by 
 test-methode?
 2.And one more question: I'm using dataproviders in my tests. Do I have any 
 mechanism to map the pairs (test-methode,dataprovider Object[]) to the tests.
 I mean if I have 
 @DataProvider(name = test1)
 public Object[][] createData1() {
  return new Object[][] {
{ Cedric, new Integer(36) },
{ Anne, new Integer(37)},
  };
 }
  
 //This test method declares that its data should be supplied by the Data 
 Provider
 //named test1
 @Test(dataProvider = test1)
 public void verifyData1(String n1, Integer n2) {
  AssertJUnit.assertTrue( n1.equals(Anne));
 }
 And I have 2 test in Testlink: 1. for { Cedric, new Integer(36) }, 2. for  
 { Anne, new Integer(37)}.
 And the results should map to each test

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.jenkins-ci.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[JIRA] (JENKINS-12916) Can't assign testng results to the testlink by Test Methode Name(only by Java Class )

2012-03-12 Thread nicolas_myakush...@yahoo.com (JIRA)

[ 
https://issues.jenkins-ci.org/browse/JENKINS-12916?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=160158#comment-160158
 ] 

Nikolay Myakushkin commented on JENKINS-12916:
--

Sure Bruno, I have attached testng-results.xml, and 
testng-resultstestlinkwithsubs.xml for importing to testlink

 Can't assign testng results to the testlink by Test Methode  Name(only by 
 Java Class )
 --

 Key: JENKINS-12916
 URL: https://issues.jenkins-ci.org/browse/JENKINS-12916
 Project: Jenkins
  Issue Type: Bug
  Components: testlink
 Environment: WinXP: Jenkins (org.jenkins-ci.main:jenkins-war:1.449), 
 Jenkins TestLink Plugin (3.0.2), TestNG Lib (6.4),TestLink 1.9.3 (Prague) 
Reporter: Nikolay Myakushkin
Assignee: Bruno P. Kinoshita
 Attachments: testlink-3.1-alpha2.hpi, testlink_settings.png


 I'm using testlink plugin for my project. It is very useful and easy to use. 
 Thanks to the authors. But I have some suggestion. 
 1.As I understand, test results from testng-results.xml are mapped to the 
 tests only  by Java Class Custom field. Do I have any way to map them by 
 test-methode?
 2.And one more question: I'm using dataproviders in my tests. Do I have any 
 mechanism to map the pairs (test-methode,dataprovider Object[]) to the tests.
 I mean if I have 
 @DataProvider(name = test1)
 public Object[][] createData1() {
  return new Object[][] {
{ Cedric, new Integer(36) },
{ Anne, new Integer(37)},
  };
 }
  
 //This test method declares that its data should be supplied by the Data 
 Provider
 //named test1
 @Test(dataProvider = test1)
 public void verifyData1(String n1, Integer n2) {
  AssertJUnit.assertTrue( n1.equals(Anne));
 }
 And I have 2 test in Testlink: 1. for { Cedric, new Integer(36) }, 2. for  
 { Anne, new Integer(37)}.
 And the results should map to each test

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.jenkins-ci.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[JIRA] (JENKINS-12916) Can't assign testng results to the testlink by Test Methode Name(only by Java Class )

2012-03-12 Thread nicolas_myakush...@yahoo.com (JIRA)

 [ 
https://issues.jenkins-ci.org/browse/JENKINS-12916?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Nikolay Myakushkin updated JENKINS-12916:
-

Attachment: testng-resultstestlinkwithsubs.xml
testng-results.xml

 Can't assign testng results to the testlink by Test Methode  Name(only by 
 Java Class )
 --

 Key: JENKINS-12916
 URL: https://issues.jenkins-ci.org/browse/JENKINS-12916
 Project: Jenkins
  Issue Type: Bug
  Components: testlink
 Environment: WinXP: Jenkins (org.jenkins-ci.main:jenkins-war:1.449), 
 Jenkins TestLink Plugin (3.0.2), TestNG Lib (6.4),TestLink 1.9.3 (Prague) 
Reporter: Nikolay Myakushkin
Assignee: Bruno P. Kinoshita
 Attachments: testlink-3.1-alpha2.hpi, testlink_settings.png, 
 testng-results.xml, testng-resultstestlinkwithsubs.xml


 I'm using testlink plugin for my project. It is very useful and easy to use. 
 Thanks to the authors. But I have some suggestion. 
 1.As I understand, test results from testng-results.xml are mapped to the 
 tests only  by Java Class Custom field. Do I have any way to map them by 
 test-methode?
 2.And one more question: I'm using dataproviders in my tests. Do I have any 
 mechanism to map the pairs (test-methode,dataprovider Object[]) to the tests.
 I mean if I have 
 @DataProvider(name = test1)
 public Object[][] createData1() {
  return new Object[][] {
{ Cedric, new Integer(36) },
{ Anne, new Integer(37)},
  };
 }
  
 //This test method declares that its data should be supplied by the Data 
 Provider
 //named test1
 @Test(dataProvider = test1)
 public void verifyData1(String n1, Integer n2) {
  AssertJUnit.assertTrue( n1.equals(Anne));
 }
 And I have 2 test in Testlink: 1. for { Cedric, new Integer(36) }, 2. for  
 { Anne, new Integer(37)}.
 And the results should map to each test

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.jenkins-ci.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[JIRA] (JENKINS-12916) Can't assign testng results to the testlink by Test Methode Name(only by Java Class )

2012-03-12 Thread brunodepau...@yahoo.com.br (JIRA)

[ 
https://issues.jenkins-ci.org/browse/JENKINS-12916?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=160161#comment-160161
 ] 

Bruno P. Kinoshita commented on JENKINS-12916:
--

Don't mention it Nikolay, thanks for the compliments, I hope the plug-in can 
help you to automate your tests with Jenkins, and keep managing them in 
TestLink ;-)

Regarding the tutorial, it was due to a bad time management of my part. I 
decided to refactor the code to create the result seeking strategy (before 
that, the plug-in was using pure OO, with inheritance, and the code was very 
tied). My first idea was to refactor, fix bugs, write tests, update Wiki and 
tutorial, and then release it. But I ended having to postpone the documentation 
step for after the release.

I'll update the docs throughout this week, so by Thursday or Friday we will 
have the Wiki and the Tutorial updated.

Thank you again! I'll close this issue, but feel free to comment here, reopen, 
or e-mail me directly if you have any further issues.

Cheers, Bruno

 Can't assign testng results to the testlink by Test Methode  Name(only by 
 Java Class )
 --

 Key: JENKINS-12916
 URL: https://issues.jenkins-ci.org/browse/JENKINS-12916
 Project: Jenkins
  Issue Type: Bug
  Components: testlink
 Environment: WinXP: Jenkins (org.jenkins-ci.main:jenkins-war:1.449), 
 Jenkins TestLink Plugin (3.0.2), TestNG Lib (6.4),TestLink 1.9.3 (Prague) 
Reporter: Nikolay Myakushkin
Assignee: Bruno P. Kinoshita
 Attachments: testlink-3.1-alpha2.hpi, testlink_settings.png, 
 testng-results.xml, testng-resultstestlinkwithsubs.xml


 I'm using testlink plugin for my project. It is very useful and easy to use. 
 Thanks to the authors. But I have some suggestion. 
 1.As I understand, test results from testng-results.xml are mapped to the 
 tests only  by Java Class Custom field. Do I have any way to map them by 
 test-methode?
 2.And one more question: I'm using dataproviders in my tests. Do I have any 
 mechanism to map the pairs (test-methode,dataprovider Object[]) to the tests.
 I mean if I have 
 @DataProvider(name = test1)
 public Object[][] createData1() {
  return new Object[][] {
{ Cedric, new Integer(36) },
{ Anne, new Integer(37)},
  };
 }
  
 //This test method declares that its data should be supplied by the Data 
 Provider
 //named test1
 @Test(dataProvider = test1)
 public void verifyData1(String n1, Integer n2) {
  AssertJUnit.assertTrue( n1.equals(Anne));
 }
 And I have 2 test in Testlink: 1. for { Cedric, new Integer(36) }, 2. for  
 { Anne, new Integer(37)}.
 And the results should map to each test

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.jenkins-ci.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[JIRA] (JENKINS-12916) Can't assign testng results to the testlink by Test Methode Name(only by Java Class )

2012-03-12 Thread brunodepau...@yahoo.com.br (JIRA)

 [ 
https://issues.jenkins-ci.org/browse/JENKINS-12916?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Bruno P. Kinoshita resolved JENKINS-12916.
--

Resolution: Not A Defect

 Can't assign testng results to the testlink by Test Methode  Name(only by 
 Java Class )
 --

 Key: JENKINS-12916
 URL: https://issues.jenkins-ci.org/browse/JENKINS-12916
 Project: Jenkins
  Issue Type: Bug
  Components: testlink
 Environment: WinXP: Jenkins (org.jenkins-ci.main:jenkins-war:1.449), 
 Jenkins TestLink Plugin (3.0.2), TestNG Lib (6.4),TestLink 1.9.3 (Prague) 
Reporter: Nikolay Myakushkin
Assignee: Bruno P. Kinoshita
 Attachments: testlink-3.1-alpha2.hpi, testlink_settings.png, 
 testng-results.xml, testng-resultstestlinkwithsubs.xml


 I'm using testlink plugin for my project. It is very useful and easy to use. 
 Thanks to the authors. But I have some suggestion. 
 1.As I understand, test results from testng-results.xml are mapped to the 
 tests only  by Java Class Custom field. Do I have any way to map them by 
 test-methode?
 2.And one more question: I'm using dataproviders in my tests. Do I have any 
 mechanism to map the pairs (test-methode,dataprovider Object[]) to the tests.
 I mean if I have 
 @DataProvider(name = test1)
 public Object[][] createData1() {
  return new Object[][] {
{ Cedric, new Integer(36) },
{ Anne, new Integer(37)},
  };
 }
  
 //This test method declares that its data should be supplied by the Data 
 Provider
 //named test1
 @Test(dataProvider = test1)
 public void verifyData1(String n1, Integer n2) {
  AssertJUnit.assertTrue( n1.equals(Anne));
 }
 And I have 2 test in Testlink: 1. for { Cedric, new Integer(36) }, 2. for  
 { Anne, new Integer(37)}.
 And the results should map to each test

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.jenkins-ci.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[JIRA] (JENKINS-12916) Can't assign testng results to the testlink by Test Methode Name(only by Java Class )

2012-03-08 Thread brunodepau...@yahoo.com.br (JIRA)

 [ 
https://issues.jenkins-ci.org/browse/JENKINS-12916?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Bruno P. Kinoshita closed JENKINS-12916.



Fixed in 3.1

 Can't assign testng results to the testlink by Test Methode  Name(only by 
 Java Class )
 --

 Key: JENKINS-12916
 URL: https://issues.jenkins-ci.org/browse/JENKINS-12916
 Project: Jenkins
  Issue Type: Bug
  Components: testlink
 Environment: WinXP: Jenkins (org.jenkins-ci.main:jenkins-war:1.449), 
 Jenkins TestLink Plugin (3.0.2), TestNG Lib (6.4),TestLink 1.9.3 (Prague) 
Reporter: Nikolay Myakushkin
Assignee: Bruno P. Kinoshita
 Attachments: testlink-3.1-alpha2.hpi


 I'm using testlink plugin for my project. It is very useful and easy to use. 
 Thanks to the authors. But I have some suggestion. 
 1.As I understand, test results from testng-results.xml are mapped to the 
 tests only  by Java Class Custom field. Do I have any way to map them by 
 test-methode?
 2.And one more question: I'm using dataproviders in my tests. Do I have any 
 mechanism to map the pairs (test-methode,dataprovider Object[]) to the tests.
 I mean if I have 
 @DataProvider(name = test1)
 public Object[][] createData1() {
  return new Object[][] {
{ Cedric, new Integer(36) },
{ Anne, new Integer(37)},
  };
 }
  
 //This test method declares that its data should be supplied by the Data 
 Provider
 //named test1
 @Test(dataProvider = test1)
 public void verifyData1(String n1, Integer n2) {
  AssertJUnit.assertTrue( n1.equals(Anne));
 }
 And I have 2 test in Testlink: 1. for { Cedric, new Integer(36) }, 2. for  
 { Anne, new Integer(37)}.
 And the results should map to each test

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.jenkins-ci.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[JIRA] (JENKINS-12916) Can't assign testng results to the testlink by Test Methode Name(only by Java Class )

2012-03-04 Thread nicolas_myakush...@yahoo.com (JIRA)

[ 
https://issues.jenkins-ci.org/browse/JENKINS-12916?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=159824#comment-159824
 ] 

Nikolay Myakushkin commented on JENKINS-12916:
--

Thank you Bruno, for efficiency.

And thanks for your great tool.

Nick

 Can't assign testng results to the testlink by Test Methode  Name(only by 
 Java Class )
 --

 Key: JENKINS-12916
 URL: https://issues.jenkins-ci.org/browse/JENKINS-12916
 Project: Jenkins
  Issue Type: Bug
  Components: testlink
 Environment: WinXP: Jenkins (org.jenkins-ci.main:jenkins-war:1.449), 
 Jenkins TestLink Plugin (3.0.2), TestNG Lib (6.4),TestLink 1.9.3 (Prague) 
Reporter: Nikolay Myakushkin
Assignee: Bruno P. Kinoshita
 Attachments: testlink-3.1-alpha2.hpi


 I'm using testlink plugin for my project. It is very useful and easy to use. 
 Thanks to the authors. But I have some suggestion. 
 1.As I understand, test results from testng-results.xml are mapped to the 
 tests only  by Java Class Custom field. Do I have any way to map them by 
 test-methode?
 2.And one more question: I'm using dataproviders in my tests. Do I have any 
 mechanism to map the pairs (test-methode,dataprovider Object[]) to the tests.
 I mean if I have 
 @DataProvider(name = test1)
 public Object[][] createData1() {
  return new Object[][] {
{ Cedric, new Integer(36) },
{ Anne, new Integer(37)},
  };
 }
  
 //This test method declares that its data should be supplied by the Data 
 Provider
 //named test1
 @Test(dataProvider = test1)
 public void verifyData1(String n1, Integer n2) {
  AssertJUnit.assertTrue( n1.equals(Anne));
 }
 And I have 2 test in Testlink: 1. for { Cedric, new Integer(36) }, 2. for  
 { Anne, new Integer(37)}.
 And the results should map to each test

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.jenkins-ci.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[JIRA] (JENKINS-12916) Can't assign testng results to the testlink by Test Methode Name(only by Java Class )

2012-03-03 Thread brunodepau...@yahoo.com.br (JIRA)

[ 
https://issues.jenkins-ci.org/browse/JENKINS-12916?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=159778#comment-159778
 ] 

Bruno P. Kinoshita commented on JENKINS-12916:
--

Hi Nick, 

I'm preparing a new version for release-candidate. I'll close this issue, as 
there are two features (TestNG methods, and TestNG data providers). The former 
feature has been added in issue 
https://issues.jenkins-ci.org/browse/JENKINS-11894 and for the latter I created 
the following issue https://issues.jenkins-ci.org/browse/JENKINS-12969. 

I'll monitor TestNG releases. As soon as a new version is released with the fix 
that we need, I'll add a strategy for you :)

Let me know if you need anything in the meantime.

All the best,
Bruno

 Can't assign testng results to the testlink by Test Methode  Name(only by 
 Java Class )
 --

 Key: JENKINS-12916
 URL: https://issues.jenkins-ci.org/browse/JENKINS-12916
 Project: Jenkins
  Issue Type: Bug
  Components: testlink
 Environment: WinXP: Jenkins (org.jenkins-ci.main:jenkins-war:1.449), 
 Jenkins TestLink Plugin (3.0.2), TestNG Lib (6.4),TestLink 1.9.3 (Prague) 
Reporter: Nikolay Myakushkin
Assignee: Bruno P. Kinoshita
 Attachments: testlink-3.1-alpha2.hpi


 I'm using testlink plugin for my project. It is very useful and easy to use. 
 Thanks to the authors. But I have some suggestion. 
 1.As I understand, test results from testng-results.xml are mapped to the 
 tests only  by Java Class Custom field. Do I have any way to map them by 
 test-methode?
 2.And one more question: I'm using dataproviders in my tests. Do I have any 
 mechanism to map the pairs (test-methode,dataprovider Object[]) to the tests.
 I mean if I have 
 @DataProvider(name = test1)
 public Object[][] createData1() {
  return new Object[][] {
{ Cedric, new Integer(36) },
{ Anne, new Integer(37)},
  };
 }
  
 //This test method declares that its data should be supplied by the Data 
 Provider
 //named test1
 @Test(dataProvider = test1)
 public void verifyData1(String n1, Integer n2) {
  AssertJUnit.assertTrue( n1.equals(Anne));
 }
 And I have 2 test in Testlink: 1. for { Cedric, new Integer(36) }, 2. for  
 { Anne, new Integer(37)}.
 And the results should map to each test

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.jenkins-ci.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[JIRA] (JENKINS-12916) Can't assign testng results to the testlink by Test Methode Name(only by Java Class )

2012-02-29 Thread brunodepau...@yahoo.com.br (JIRA)

[ 
https://issues.jenkins-ci.org/browse/JENKINS-12916?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=159656#comment-159656
 ] 

Bruno P. Kinoshita commented on JENKINS-12916:
--

Hi Nikolay

Actually, you'll have a strategy with data providers soon. See [1] ;-)

Is it possible to map just test-methods names to the testlink methods(by for 
ex. java class, test-method pair, without using dataprovider) ?

Not with the latest release. But it is being tested by some users in an alpha 
version. Would you like to give it a try too? This version is 3.1-alpha. I can 
attach the hpi package here today or tomorrow. I'm finishing to fix some tests.

Cheers

[1] https://github.com/cbeust/testng/issues/181#issuecomment-4232884

 Can't assign testng results to the testlink by Test Methode  Name(only by 
 Java Class )
 --

 Key: JENKINS-12916
 URL: https://issues.jenkins-ci.org/browse/JENKINS-12916
 Project: Jenkins
  Issue Type: Bug
  Components: testlink
 Environment: WinXP: Jenkins (org.jenkins-ci.main:jenkins-war:1.449), 
 Jenkins TestLink Plugin (3.0.2), TestNG Lib (6.4),TestLink 1.9.3 (Prague) 
Reporter: Nikolay Myakushkin
Assignee: Bruno P. Kinoshita

 I'm using testlink plugin for my project. It is very useful and easy to use. 
 Thanks to the authors. But I have some suggestion. 
 1.As I understand, test results from testng-results.xml are mapped to the 
 tests only  by Java Class Custom field. Do I have any way to map them by 
 test-methode?
 2.And one more question: I'm using dataproviders in my tests. Do I have any 
 mechanism to map the pairs (test-methode,dataprovider Object[]) to the tests.
 I mean if I have 
 @DataProvider(name = test1)
 public Object[][] createData1() {
  return new Object[][] {
{ Cedric, new Integer(36) },
{ Anne, new Integer(37)},
  };
 }
  
 //This test method declares that its data should be supplied by the Data 
 Provider
 //named test1
 @Test(dataProvider = test1)
 public void verifyData1(String n1, Integer n2) {
  AssertJUnit.assertTrue( n1.equals(Anne));
 }
 And I have 2 test in Testlink: 1. for { Cedric, new Integer(36) }, 2. for  
 { Anne, new Integer(37)}.
 And the results should map to each test

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.jenkins-ci.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[JIRA] (JENKINS-12916) Can't assign testng results to the testlink by Test Methode Name(only by Java Class )

2012-02-29 Thread brunodepau...@yahoo.com.br (JIRA)

 [ 
https://issues.jenkins-ci.org/browse/JENKINS-12916?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Bruno P. Kinoshita updated JENKINS-12916:
-

Attachment: testlink-3.1-alpha2.hpi

TestLink Plug-in 3.1 alpha #2

 Can't assign testng results to the testlink by Test Methode  Name(only by 
 Java Class )
 --

 Key: JENKINS-12916
 URL: https://issues.jenkins-ci.org/browse/JENKINS-12916
 Project: Jenkins
  Issue Type: Bug
  Components: testlink
 Environment: WinXP: Jenkins (org.jenkins-ci.main:jenkins-war:1.449), 
 Jenkins TestLink Plugin (3.0.2), TestNG Lib (6.4),TestLink 1.9.3 (Prague) 
Reporter: Nikolay Myakushkin
Assignee: Bruno P. Kinoshita
 Attachments: testlink-3.1-alpha2.hpi


 I'm using testlink plugin for my project. It is very useful and easy to use. 
 Thanks to the authors. But I have some suggestion. 
 1.As I understand, test results from testng-results.xml are mapped to the 
 tests only  by Java Class Custom field. Do I have any way to map them by 
 test-methode?
 2.And one more question: I'm using dataproviders in my tests. Do I have any 
 mechanism to map the pairs (test-methode,dataprovider Object[]) to the tests.
 I mean if I have 
 @DataProvider(name = test1)
 public Object[][] createData1() {
  return new Object[][] {
{ Cedric, new Integer(36) },
{ Anne, new Integer(37)},
  };
 }
  
 //This test method declares that its data should be supplied by the Data 
 Provider
 //named test1
 @Test(dataProvider = test1)
 public void verifyData1(String n1, Integer n2) {
  AssertJUnit.assertTrue( n1.equals(Anne));
 }
 And I have 2 test in Testlink: 1. for { Cedric, new Integer(36) }, 2. for  
 { Anne, new Integer(37)}.
 And the results should map to each test

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.jenkins-ci.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[JIRA] (JENKINS-12916) Can't assign testng results to the testlink by Test Methode Name(only by Java Class )

2012-02-29 Thread nicolas_myakush...@yahoo.com (JIRA)

[ 
https://issues.jenkins-ci.org/browse/JENKINS-12916?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=159667#comment-159667
 ] 

Nikolay Myakushkin commented on JENKINS-12916:
--

Thank you, Bruno 

This is great news. 

Best Regards,
Nick


 Can't assign testng results to the testlink by Test Methode  Name(only by 
 Java Class )
 --

 Key: JENKINS-12916
 URL: https://issues.jenkins-ci.org/browse/JENKINS-12916
 Project: Jenkins
  Issue Type: Bug
  Components: testlink
 Environment: WinXP: Jenkins (org.jenkins-ci.main:jenkins-war:1.449), 
 Jenkins TestLink Plugin (3.0.2), TestNG Lib (6.4),TestLink 1.9.3 (Prague) 
Reporter: Nikolay Myakushkin
Assignee: Bruno P. Kinoshita
 Attachments: testlink-3.1-alpha2.hpi


 I'm using testlink plugin for my project. It is very useful and easy to use. 
 Thanks to the authors. But I have some suggestion. 
 1.As I understand, test results from testng-results.xml are mapped to the 
 tests only  by Java Class Custom field. Do I have any way to map them by 
 test-methode?
 2.And one more question: I'm using dataproviders in my tests. Do I have any 
 mechanism to map the pairs (test-methode,dataprovider Object[]) to the tests.
 I mean if I have 
 @DataProvider(name = test1)
 public Object[][] createData1() {
  return new Object[][] {
{ Cedric, new Integer(36) },
{ Anne, new Integer(37)},
  };
 }
  
 //This test method declares that its data should be supplied by the Data 
 Provider
 //named test1
 @Test(dataProvider = test1)
 public void verifyData1(String n1, Integer n2) {
  AssertJUnit.assertTrue( n1.equals(Anne));
 }
 And I have 2 test in Testlink: 1. for { Cedric, new Integer(36) }, 2. for  
 { Anne, new Integer(37)}.
 And the results should map to each test

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.jenkins-ci.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[JIRA] (JENKINS-12916) Can't assign testng results to the testlink by Test Methode Name(only by Java Class )

2012-02-28 Thread brunodepau...@yahoo.com.br (JIRA)

[ 
https://issues.jenkins-ci.org/browse/JENKINS-12916?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=159609#comment-159609
 ] 

Bruno P. Kinoshita commented on JENKINS-12916:
--

Hi Nikolay!

 I'm using testlink plugin for my project. It is very useful and easy to use. 
 Thanks to the authors.

Glad to hear that the plug-in is being ! Thanks!

 1.As I understand, test results from testng-results.xml are mapped to the 
 tests only by Java Class Custom field. Do I have any way to map them by 
 test-methode?

In version 3.1 you'll have a way for using test-methods to map to your tests in 
TestLink. Here's the issue related to this feature: 
https://issues.jenkins-ci.org/browse/JENKINS-11894

 2.And one more question: I'm using dataproviders in my tests. Do I have any 
 mechanism to map the pairs (test-methode,dataprovider Object[]) to the tests.

Give me some time to investigate if that's possible. It all depends on whether 
TestNG XML contains information about the data provider used or not. If so, in 
3.1 we have a new concept: Result Seeking Strategies. It implements the 
Strategy Pattern (http://www.vincehuston.org/dp/strategy.html) and is an 
extension point. So now it's quite easy to add new result seeking strategies. 

Get back to you soon.

Thanks!
Bruno

 Can't assign testng results to the testlink by Test Methode  Name(only by 
 Java Class )
 --

 Key: JENKINS-12916
 URL: https://issues.jenkins-ci.org/browse/JENKINS-12916
 Project: Jenkins
  Issue Type: Bug
  Components: testlink
 Environment: WinXP: Jenkins (org.jenkins-ci.main:jenkins-war:1.449), 
 Jenkins TestLink Plugin (3.0.2), TestNG Lib (6.4),TestLink 1.9.3 (Prague) 
Reporter: Nikolay Myakushkin
Assignee: Bruno P. Kinoshita

 I'm using testlink plugin for my project. It is very useful and easy to use. 
 Thanks to the authors. But I have some suggestion. 
 1.As I understand, test results from testng-results.xml are mapped to the 
 tests only  by Java Class Custom field. Do I have any way to map them by 
 test-methode?
 2.And one more question: I'm using dataproviders in my tests. Do I have any 
 mechanism to map the pairs (test-methode,dataprovider Object[]) to the tests.
 I mean if I have 
 @DataProvider(name = test1)
 public Object[][] createData1() {
  return new Object[][] {
{ Cedric, new Integer(36) },
{ Anne, new Integer(37)},
  };
 }
  
 //This test method declares that its data should be supplied by the Data 
 Provider
 //named test1
 @Test(dataProvider = test1)
 public void verifyData1(String n1, Integer n2) {
  AssertJUnit.assertTrue( n1.equals(Anne));
 }
 And I have 2 test in Testlink: 1. for { Cedric, new Integer(36) }, 2. for  
 { Anne, new Integer(37)}.
 And the results should map to each test

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.jenkins-ci.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[JIRA] (JENKINS-12916) Can't assign testng results to the testlink by Test Methode Name(only by Java Class )

2012-02-28 Thread brunodepau...@yahoo.com.br (JIRA)

[ 
https://issues.jenkins-ci.org/browse/JENKINS-12916?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=159644#comment-159644
 ] 

Bruno P. Kinoshita commented on JENKINS-12916:
--

Hi Nikolay! 

I just finished running few tests with TestNG 6, and unfortunately looks like 
it does not include the name of the data provider in the output XML. 

I filled an issue [1] in TestNG github asking for a way of doing so. Hopefully 
someone will tell us how to find out information on test method and data 
provider.

Cheers, B

[1] https://github.com/cbeust/testng/issues/181

 Can't assign testng results to the testlink by Test Methode  Name(only by 
 Java Class )
 --

 Key: JENKINS-12916
 URL: https://issues.jenkins-ci.org/browse/JENKINS-12916
 Project: Jenkins
  Issue Type: Bug
  Components: testlink
 Environment: WinXP: Jenkins (org.jenkins-ci.main:jenkins-war:1.449), 
 Jenkins TestLink Plugin (3.0.2), TestNG Lib (6.4),TestLink 1.9.3 (Prague) 
Reporter: Nikolay Myakushkin
Assignee: Bruno P. Kinoshita

 I'm using testlink plugin for my project. It is very useful and easy to use. 
 Thanks to the authors. But I have some suggestion. 
 1.As I understand, test results from testng-results.xml are mapped to the 
 tests only  by Java Class Custom field. Do I have any way to map them by 
 test-methode?
 2.And one more question: I'm using dataproviders in my tests. Do I have any 
 mechanism to map the pairs (test-methode,dataprovider Object[]) to the tests.
 I mean if I have 
 @DataProvider(name = test1)
 public Object[][] createData1() {
  return new Object[][] {
{ Cedric, new Integer(36) },
{ Anne, new Integer(37)},
  };
 }
  
 //This test method declares that its data should be supplied by the Data 
 Provider
 //named test1
 @Test(dataProvider = test1)
 public void verifyData1(String n1, Integer n2) {
  AssertJUnit.assertTrue( n1.equals(Anne));
 }
 And I have 2 test in Testlink: 1. for { Cedric, new Integer(36) }, 2. for  
 { Anne, new Integer(37)}.
 And the results should map to each test

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.jenkins-ci.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[JIRA] (JENKINS-12916) Can't assign testng results to the testlink by Test Methode Name(only by Java Class )

2012-02-28 Thread nicolas_myakush...@yahoo.com (JIRA)

[ 
https://issues.jenkins-ci.org/browse/JENKINS-12916?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=159649#comment-159649
 ] 

Nikolay Myakushkin commented on JENKINS-12916:
--

Hi, Bruno 
Thank you for your analyze. Yes where is no any data provider information in 
TestNG 6 results. But it has test-method names. Is it possible to map just 
test-methods names to the testlink methods(by for ex. java class, test-method 
pair, without using dataprovider) ?

Best Regards,
Nikolay.  

 Can't assign testng results to the testlink by Test Methode  Name(only by 
 Java Class )
 --

 Key: JENKINS-12916
 URL: https://issues.jenkins-ci.org/browse/JENKINS-12916
 Project: Jenkins
  Issue Type: Bug
  Components: testlink
 Environment: WinXP: Jenkins (org.jenkins-ci.main:jenkins-war:1.449), 
 Jenkins TestLink Plugin (3.0.2), TestNG Lib (6.4),TestLink 1.9.3 (Prague) 
Reporter: Nikolay Myakushkin
Assignee: Bruno P. Kinoshita

 I'm using testlink plugin for my project. It is very useful and easy to use. 
 Thanks to the authors. But I have some suggestion. 
 1.As I understand, test results from testng-results.xml are mapped to the 
 tests only  by Java Class Custom field. Do I have any way to map them by 
 test-methode?
 2.And one more question: I'm using dataproviders in my tests. Do I have any 
 mechanism to map the pairs (test-methode,dataprovider Object[]) to the tests.
 I mean if I have 
 @DataProvider(name = test1)
 public Object[][] createData1() {
  return new Object[][] {
{ Cedric, new Integer(36) },
{ Anne, new Integer(37)},
  };
 }
  
 //This test method declares that its data should be supplied by the Data 
 Provider
 //named test1
 @Test(dataProvider = test1)
 public void verifyData1(String n1, Integer n2) {
  AssertJUnit.assertTrue( n1.equals(Anne));
 }
 And I have 2 test in Testlink: 1. for { Cedric, new Integer(36) }, 2. for  
 { Anne, new Integer(37)}.
 And the results should map to each test

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.jenkins-ci.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[JIRA] (JENKINS-12916) Can't assign testng results to the testlink by Test Methode Name(only by Java Class )

2012-02-27 Thread nicolas_myakush...@yahoo.com (JIRA)
Nikolay Myakushkin created JENKINS-12916:


 Summary: Can't assign testng results to the testlink by Test 
Methode  Name(only by Java Class )
 Key: JENKINS-12916
 URL: https://issues.jenkins-ci.org/browse/JENKINS-12916
 Project: Jenkins
  Issue Type: Bug
  Components: testlink
 Environment: WinXP: Jenkins (org.jenkins-ci.main:jenkins-war:1.449), 
Jenkins TestLink Plugin (3.0.2), TestNG Lib (6.4)
Reporter: Nikolay Myakushkin
Assignee: Bruno P. Kinoshita


I'm using testlink plugin for my project. It is very useful and easy to use. 
Thanks to the authors. But I have some suggestion. 
1.As I understand, test results from testng-results.xml are mapped to the tests 
only  by Java Class Custom field. Do I have any way to map them by test-methode?
2.And one more question: I'm using dataproviders in my tests. Do I have any 
mechanism to map the pairs (test-methode,dataprovider Object[]) to the tests.

I mean if I have 

@DataProvider(name = test1)
public Object[][] createData1() {
 return new Object[][] {
   { Cedric, new Integer(36) },
   { Anne, new Integer(37)},
 };
}
 
//This test method declares that its data should be supplied by the Data 
Provider
//named test1
@Test(dataProvider = test1)
public void verifyData1(String n1, Integer n2) {
 AssertJUnit.assertTrue( n1.equals(Anne));
}

And I have 2 test in Testlink: 1. for { Cedric, new Integer(36) }, 2. for  { 
Anne, new Integer(37)}.
And the results should map to each test








--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.jenkins-ci.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira




[JIRA] (JENKINS-12916) Can't assign testng results to the testlink by Test Methode Name(only by Java Class )

2012-02-27 Thread nicolas_myakush...@yahoo.com (JIRA)

 [ 
https://issues.jenkins-ci.org/browse/JENKINS-12916?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Nikolay Myakushkin updated JENKINS-12916:
-

Environment: WinXP: Jenkins (org.jenkins-ci.main:jenkins-war:1.449), 
Jenkins TestLink Plugin (3.0.2), TestNG Lib (6.4),TestLink 1.9.3 (Prague)   
(was: WinXP: Jenkins (org.jenkins-ci.main:jenkins-war:1.449), Jenkins TestLink 
Plugin (3.0.2), TestNG Lib (6.4))

 Can't assign testng results to the testlink by Test Methode  Name(only by 
 Java Class )
 --

 Key: JENKINS-12916
 URL: https://issues.jenkins-ci.org/browse/JENKINS-12916
 Project: Jenkins
  Issue Type: Bug
  Components: testlink
 Environment: WinXP: Jenkins (org.jenkins-ci.main:jenkins-war:1.449), 
 Jenkins TestLink Plugin (3.0.2), TestNG Lib (6.4),TestLink 1.9.3 (Prague) 
Reporter: Nikolay Myakushkin
Assignee: Bruno P. Kinoshita

 I'm using testlink plugin for my project. It is very useful and easy to use. 
 Thanks to the authors. But I have some suggestion. 
 1.As I understand, test results from testng-results.xml are mapped to the 
 tests only  by Java Class Custom field. Do I have any way to map them by 
 test-methode?
 2.And one more question: I'm using dataproviders in my tests. Do I have any 
 mechanism to map the pairs (test-methode,dataprovider Object[]) to the tests.
 I mean if I have 
 @DataProvider(name = test1)
 public Object[][] createData1() {
  return new Object[][] {
{ Cedric, new Integer(36) },
{ Anne, new Integer(37)},
  };
 }
  
 //This test method declares that its data should be supplied by the Data 
 Provider
 //named test1
 @Test(dataProvider = test1)
 public void verifyData1(String n1, Integer n2) {
  AssertJUnit.assertTrue( n1.equals(Anne));
 }
 And I have 2 test in Testlink: 1. for { Cedric, new Integer(36) }, 2. for  
 { Anne, new Integer(37)}.
 And the results should map to each test

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.jenkins-ci.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira