@Test(groups = "wso2.greg", description = "tags Verification", dependsOnMethods = "testAddPolicy")
  public void testTagsVerification()
      throws AxisFault, GovernanceException, RegistryException, RegistryExceptionException {

    final String policyPath = "/_system/governance" + policy.getPath();

    infoServiceAdminclient.addTag("my tag", policyPath, sessionCookie);
    TagBean tagBean = infoServiceAdminclient.getTags(policyPath, sessionCookie);

    Tag[] tags = tagBean.getTags();
    boolean status = false;
    for (Tag tmpTag : tags) {
      if (tmpTag.getTagName().contentEquals("my tag")) {
        status = true;
      }
    }
    assertTrue(status, "verifying the tag creation");
  }