ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
AlphanumericTest.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2019 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
8 namespace ILIAS\Data;
9 
12 
13 require_once('./libs/composer/vendor/autoload.php');
14 
16 {
18  {
19  $value = new Alphanumeric('hello');
20 
21  $this->assertSame('hello', $value->asString());
22  }
23 
25  {
26  $value = new Alphanumeric(6);
27 
28  $this->assertSame('6', $value->asString());
29  }
30 
32  {
33  $value = new Alphanumeric(6);
34 
35  $this->assertSame(6, $value->getValue());
36  }
37 
39  {
40  $value = new Alphanumeric(6.0);
41 
42  $this->assertSame('6', $value->asString());
43  }
44 
45  public function testFloatIsAlphanumericValue()
46  {
47  $value = new Alphanumeric(6.0);
48 
49  $this->assertSame(6.0, $value->getValue());
50  }
51 
53  {
54  $this->expectNotToPerformAssertions();
55 
56  try {
57  $value = new Alphanumeric('hello world');
58  } catch (ConstraintViolationException $exception) {
59  return;
60  }
61  $this->fail();
62  }
63 }
testSimpleStringIsCorrectAlphanumericValueAndCanBeConvertedToString()