Filters collection by equality of numeric properties. For each property passed, if the resource does not have such property or if the value is not numeric, the property is ignored.
Author: Amrouche Hamza (hamza.simperfit@gmail.com)
Author: Teoh Han Hui (teohhanhui@gmail.com)
Inheritance: extends AbstractFilter
 public function testGetDescriptionDefaultFields()
 {
     $filter = new NumericFilter($this->managerRegistry, new RequestStack());
     $this->assertEquals(['id' => ['property' => 'id', 'type' => 'int', 'required' => false], 'dummyFloat' => ['property' => 'dummyFloat', 'type' => 'float', 'required' => false], 'dummyPrice' => ['property' => 'dummyPrice', 'type' => 'string', 'required' => false]], $filter->getDescription($this->resourceClass));
 }