public void givenValuesOfDifferentTypesWhenTestingValueDescriptorEqualityExpectNotEquals()
{
Some some = buildSomeValue( module );
ValueDescriptor someDescriptor = qi4j.api().valueDescriptorFor( some );
Other other = buildOtherValue( module );
ValueDescriptor otherDescriptor = qi4j.api().valueDescriptorFor( other );
assertThat( "ValueDescriptors not equal",
someDescriptor,
not( equalTo( otherDescriptor ) ) );