/**
   * Run the int getIndx() method test.
   *
   * @throws Exception
   * @generatedBy CodePro at 4/19/14 3:04 PM
   */
  @Test
  public void testGetIndx_1() throws Exception {
    INCHI_PARITY fixture = INCHI_PARITY.EVEN;

    int result = fixture.getIndx();

    // add additional test code here
    assertEquals(0, result);
  }
  /**
   * Run the INCHI_PARITY getValue(int) method test.
   *
   * @throws Exception
   * @generatedBy CodePro at 4/19/14 3:04 PM
   */
  @Test
  public void testGetValue_4() throws Exception {
    int parity = 3;

    INCHI_PARITY result = INCHI_PARITY.getValue(parity);

    // add additional test code here
    assertNotNull(result);
  }