Easy JUnit - testlink integration with unitils

Discussion and information for XML-RPC interface.

Moderators: Amaradana, TurboPT, TL Developers

Post Reply
thomasi.derycke
TestLink user
Posts: 2
Joined: Fri Oct 23, 2009 9:15 am

Easy JUnit - testlink integration with unitils

Post by thomasi.derycke »

Unitils is a lightweight opensource xunit testingframework compatible with JUnit & TestNG. I'ts modulare structure allows you to use different testingframeworks to work together.

https://sourceforge.net/p/unitilstestlink/wiki/Home/

Recently a unitils-testlink module has been opensourced. It allows you to push pack results of your test in the most simple matter to testlink.

Code: Select all

public class helloworldTest {

        @TestLink("helloworld")
        @Test
        public void helloworld() {
            Assert.assertTrue(true);
        }

    }
This basic example will push back the testresult of testcase "helloworld".
- Common stuff can be configured once for a project (like project name,...)
- options like 'auto create test in testlink if it doesn't exist yet' are also available.

When using maven you could imagine creating a profile to only push back results when the test are runned in you continious build system (like jenkins)

take a look @ https://sourceforge.net/p/unitilstestlink/wiki/Home/
fman
Member of TestLink Community
Posts: 3123
Joined: Tue Nov 15, 2005 7:19 am

Re: Easy JUnit - testlink integration with unitils

Post by fman »

Post Reply