🤖 AI Summary
This work addresses the limitations of existing test migration approaches, which rely on code structure mapping and struggle to transfer domain knowledge across libraries or programming languages. To overcome this, the authors propose an intent-driven multi-agent framework that shifts the paradigm from structural mapping to semantic intent alignment. The approach leverages a language-agnostic Test Description Language (TDL) to abstract test intents, aligns them using repository semantic graphs, and employs large language models to guide code generation and iterative validation. Evaluated on nine open-source projects, the method automatically generated 2,776 syntactically correct tests, achieving an accuracy of 85% and an effective execution rate of 74%—significantly outperforming baseline methods—and successfully uncovered multiple deep-seated bugs confirmed by project maintainers.
📝 Abstract
Unit tests capture both functional checks and domain-specific knowledge, but this knowledge remains locked within individual projects and is rarely reused across libraries with overlapping functionality. Existing migration techniques based on structural code mappings (e.g., API signatures) often break down under divergent designs or cross-language settings, resulting in non-executable migrated tests. In this paper, we present IntentTester, a multi-agent framework for intent-driven test reuse. Instead of translating raw code, IntentTester abstracts tests into a language-agnostic Test Description Language (TDL), aligns them with semantically related entities and dependencies in a repository graph, and synthesizes executable tests through LLM-guided reasoning and iterative validation. This design enables cross-library and cross-language migration without manual intervention, producing migrated tests that existing structure-mapping approaches cannot achieve. We evaluate IntentTester on nine open-source projects across three domains (JSON, HTML, and Time) and two languages (Java and Python). IntentTester generates 2,776 syntactically correct tests with 85\% correctness; in comparison, the two baselines achieve 51\% and 43\%. Among them, 2,410 tests executed successfully, yielding a 74\% effectiveness rate. Beyond higher success rates, IntentTester also surfaced previously unknown defects including stack overflows, null dereferences, and parsing inconsistencies, several of which have been acknowledged or patched by maintainers. Our results show that intent-driven migration shifts the focus from code mappings to semantic alignment, allowing practical cross-library and cross-language test reuse while improving test quality and exposing implementation flaws.