DivisibleByTest.php 829 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. namespace JsonSchema\Tests;
  3. class DivisibleByTest extends BaseTestCase
  4. {
  5. public function getInvalidTests()
  6. {
  7. return array(
  8. array(
  9. '{
  10. "value":5.6333
  11. }',
  12. '{
  13. "type":"object",
  14. "properties":{
  15. "value":{"type":"number","divisibleBy":3}
  16. }
  17. }'
  18. )
  19. );
  20. }
  21. public function getValidTests()
  22. {
  23. return array(
  24. array(
  25. '{
  26. "value":6
  27. }',
  28. '{
  29. "type":"object",
  30. "properties":{
  31. "value":{"type":"number","divisibleBy":3}
  32. }
  33. }'
  34. )
  35. );
  36. }
  37. }