We group Test case in TestNG using.
@Test( groups = {"xyz", "test" })
@Test( groups = {"Testing" })
If we call this in xml configuration it will run only that group test cases, reaming won't execute . BY calling it in XML as shown below.
<groups>
<run>
<include name="Testing"/>
</run>
.
Like this is there any behavior available in Jasmine Framework for grouping test cases with out writing test cases in separate place.
Aucun commentaire:
Enregistrer un commentaire