testng-skill

Installation
SKILL.md

TestNG Testing Skill

Core Patterns

Basic Test with Groups

import org.testng.annotations.*;
import org.testng.Assert;

public class LoginTest {
    @BeforeMethod
    public void setUp() { /* setup */ }

    @Test(groups = "smoke")
    public void testLoginSuccess() {
        Assert.assertTrue(loginService.login("user@test.com", "password123"));
    }
Installs
91
GitHub Stars
307
First Seen
Mar 5, 2026
testng-skill — lambdatest/agent-skills