hasRequiredAttributes() public method

public hasRequiredAttributes ( ) : bool
return bool
 public void test_SpeciesType()
 {
     SpeciesType st = new SpeciesType(2,4);
       assertEquals( false, (st.hasRequiredAttributes()) );
       st.setId("st");
       assertEquals( true, st.hasRequiredAttributes() );
       st = null;
 }