-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
If test was moved to another suite on Testomat.io, then on next import test duplicate will be created.
Video:
Screencast.from.10.03.26.13.16.26.webm
Way to fix:
If Test in source code have Testomatio id, attach it to "name" field
Example:
@TestId("31ab661c")
@Test
@Title("testAuthorCreation JUnit")
@Disabled
@Execution(ExecutionMode.CONCURRENT)
void testAuthorCreation() {
assertNotNull(author);
assertEquals("A001", author.getId());
assertEquals("John", author.getFirstName());
assertEquals("Doe", author.getLastName());
}
On import, "name" field == "testAuthorCreation @T31ab661c"
Reactions are currently unavailable