@Test
public void testMatchesAll()
{
// match elements, assert match
ValueAssertion assertion = new AssertMatchesAll( "^1$" );
assertPass( assertion, getEntry( new Tuple( 1 ) ) );
assertPass( assertion, getEntry( new Tuple( "1" ) ) );
assertPass( assertion, getEntry( new Tuple( 1, 1, 1, 1, 1, 1 ) ) );
assertFail( assertion, getEntry( new Tuple( 1, 1, 1, 0, 1, 1 ) ) );