Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space SELDEV and version 2020.2

...

Example Annotation

Code Block
languagejava
import com.parasoft.annotations.WorkItem;
import static com.parasoft.annotations.WorkItem.Type.*;

@WorkItem(type=REQ, id="REQ-123", url="https://server.myALM.com/")
@WorkItem(type=REQ, id="REQ-124", url="https://server.myALM.com/")
public void myFunction() {
	    . . .
}

Running Tests

Execute your tests with Selenic after adding WorkItem annotations:

...