installEntitySchema('user'); $value = EntityTest::create([]); // Assert that the entity has at least one violation. $this->assertNotEmpty($value->validate()); // Assert that these violations do not prevent it from satisfying the // requirements of another object. $requirement = new ContextDefinition('any'); $context = EntityContext::fromEntity($value); $this->assertTrue($requirement->isSatisfiedBy($context)); } }