// -------------------------------:: ValueDescriptor equality tests ::----------------------------------------------
//
@Test
public void givenValuesOfTheSameTypeWhenTestingValueDescriptorEqualityExpectEquals()
{
Some some = buildSomeValue( module );
ValueDescriptor someDescriptor = qi4j.api().valueDescriptorFor( some );
Some other = buildSomeValue( module );
ValueDescriptor otherDescriptor = qi4j.api().valueDescriptorFor( other );
assertThat( "ValueDescriptors equal",
someDescriptor,
equalTo( otherDescriptor ) );