tps.html 108 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style>
table.TestPurpose {
	width:100%;
	border: 1px solid black;
	border-collapse: collapse;
        font-family:Arial;
        font-size:9pt;
}
table.TestPurpose, table.TestPurpose tr, table.TestPurpose td{
        page-break-inside: avoid;
        page-break-after: avoid;
}
table.TestPurpose td{
	border: 1px solid black;
        padding:0px;
        margin:0px;
}
table.TestPurpose td.header{
	width:150px;
	font-weight: bold;
}
table.TestPurpose td.status{
	width:150px;
	text-align:right;
}
table.TestPurpose tr.body td.header{
	text-align:center;
}
h1,h2,h3 {
         page-break-before: auto;
         page-break-after: avoid;
}
td p.tplan {
        font-family:monospace;
        font-size:8pt;
}
</style>
</head>
<body>
      	<h1>5	Requirements</h1>
	
      	<h2>5.1	Traffic Light Maneuver (TLM) service</h2>
	
      	<h3>5.1.1	Check the message protocol version</h3>
	
		
		 

	<div><p><table class="TestPurpose" id="TP_IS_TLM_MSGF_BV_01">
		<tr class="id">
			<td class="header">TP Id</td>
			<td class="value" colspan="2">TP_IS_TLM_MSGF_BV_01</td>
		</tr>
		<tr class="summary">
			<td class="header">Summary</td>
			<td class="value" colspan="2">
					Check that protocolVersion is set to 1 and messageID is set to 4
			</td>
		</tr>
		<tr class="reference">
			<td class="header">Reference</td>
			<td class="value" colspan="2">ETSI TS 103 301 [1], clause 5.3</td>
		</tr>
			<tr class="pics">
				<td class="header">PICS Selection</td>
				<td class="value" colspan="2">PICS_SPATEM_GENERATION AND PICS_RSU</td>
			</tr>
		<tr class="body"><td colspan="3" class="header">Expected behaviour</td></tr>
		<tr class="body"><td colspan="3" class="value">
			with<br/>&nbsp;&nbsp;&nbsp;&nbsp;the IUT being in the &quot;initial state&quot;<br/>&nbsp;&nbsp;&nbsp;&nbsp;and the IUT sending SPATEM<br/>ensure that<br/>&nbsp;&nbsp;&nbsp;&nbsp;when<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;a SPATEM is generated<br/>&nbsp;&nbsp;&nbsp;&nbsp;then<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT sends a valid SPATEM<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing ITS PDU header<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing protocolVersion<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;indicating value '1'<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;and containing messageID<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;indicating value '4'
		</td></tr>
	</table></p>
	<p>&nbsp;</p>
	</div>
		
		 

	<div><p><table class="TestPurpose" id="TP_IS_TLM_MSGF_BV_02">
		<tr class="id">
			<td class="header">TP Id</td>
			<td class="value" colspan="2">TP_IS_TLM_MSGF_BV_02</td>
		</tr>
		<tr class="summary">
			<td class="header">Summary</td>
			<td class="value" colspan="2">
					Check that the IUT can successfully process all mandatory fields of SPATEM received
			</td>
		</tr>
		<tr class="reference">
			<td class="header">Reference</td>
			<td class="value" colspan="2">ETSI TS 103 301 [1], clause 5.3</td>
		</tr>
			<tr class="pics">
				<td class="header">PICS Selection</td>
				<td class="value" colspan="2">NOT PICS_RSU AND PICS_SPATEM_RECEPTION</td>
			</tr>
		<tr class="body"><td colspan="3" class="header">Expected behaviour</td></tr>
		<tr class="body"><td colspan="3" class="value">
			with<br/>&nbsp;&nbsp;&nbsp;&nbsp;the IUT being in the &quot;initial state&quot;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; and the IUT sending SPATEM<br/>ensure that<br/>&nbsp;&nbsp;&nbsp;&nbsp;when<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT receives a valid SPATEM<br/>&nbsp;&nbsp;&nbsp;&nbsp;then<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT forwards the SPATEM content to upper layers<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;and the IUT forwards the SPATEM content to other facilities
		</td></tr>
	</table></p>
	<p>&nbsp;</p>
	</div>
      	<h3>5.1.2	TLM service trigger, update, repetition and termination</h3>
	
		
		 

	<div><p><table class="TestPurpose" id="TP_IS_TLM_EVGN_BV_01">
		<tr class="id">
			<td class="header">TP Id</td>
			<td class="value" colspan="2">TP_IS_TLM_EVGN_BV_01</td>
		</tr>
		<tr class="summary">
			<td class="header">Summary</td>
			<td class="value" colspan="2">
					Check that TLM Service generates a new SPATEM on reception of a valid AppSPATEM _Start request
			</td>
		</tr>
		<tr class="reference">
			<td class="header">Reference</td>
			<td class="value" colspan="2">ETSI TS 103 301 [1], clause 5.4.2</td>
		</tr>
			<tr class="pics">
				<td class="header">PICS Selection</td>
				<td class="value" colspan="2">PICS_SPATEM_GENERATION AND PICS_RSU</td>
			</tr>
		<tr class="body"><td colspan="3" class="header">Expected behaviour</td></tr>
		<tr class="body"><td colspan="3" class="value">
			with<br/>&nbsp;&nbsp;&nbsp;&nbsp;the IUT being in the &quot;initial state&quot;<br/>&nbsp;&nbsp;&nbsp;&nbsp;and the IUT has not sent any SPATEM yet<br/>ensure that<br/>&nbsp;&nbsp;&nbsp;&nbsp;when<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT receives an AppSPATEM_Start request from the application layer<br/>&nbsp;&nbsp;&nbsp;&nbsp;then<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT sends a valid SPATEM
		</td></tr>
	</table></p>
	<p>&nbsp;</p>
	</div>
		

	<div><p><table class="TestPurpose" id="TP_IS_TLM_EVGN_BV_02">
		<tr class="id">
			<td class="header">TP Id</td>
			<td class="value" colspan="2">TP_IS_TLM_EVGN_BV_02</td>
		</tr>
		<tr class="summary">
			<td class="header">Summary</td>
			<td class="value" colspan="2">
					Check that TLM Service generates SPATEM are time ordered
			</td>
		</tr>
		<tr class="reference">
			<td class="header">Reference</td>
			<td class="value" colspan="2">ETSI TS 103 301 [1], clause 5.4.2</td>
		</tr>
			<tr class="pics">
				<td class="header">PICS Selection</td>
				<td class="value" colspan="2">PICS_RSU_ROLE</td>
			</tr>
		<tr class="body"><td colspan="3" class="header">Expected behaviour</td></tr>
		<tr class="body"><td colspan="3" class="value">
			with<br/>&nbsp;&nbsp;&nbsp;&nbsp;the IUT being in the &quot;initial state&quot;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; and the IUT has sent a SPATEM<br/>ensure that<br/>&nbsp;&nbsp;&nbsp;&nbsp;when<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;several SPATEM are generated<br/>&nbsp;&nbsp;&nbsp;&nbsp;then<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT sends SPATEM in time order
		</td></tr>
	</table></p>
	<p>&nbsp;</p>
	</div>
		
		 

	<div><p><table class="TestPurpose" id="TP_IS_TLM_EVGN_BV_03">
		<tr class="id">
			<td class="header">TP Id</td>
			<td class="value" colspan="2">TP_IS_TLM_EVGN_BV_03</td>
		</tr>
		<tr class="summary">
			<td class="header">Summary</td>
			<td class="value" colspan="2">
					Check that TLM Service terminates on reception of a valid AppSPATEM _Stop request
			</td>
		</tr>
		<tr class="reference">
			<td class="header">Reference</td>
			<td class="value" colspan="2">ETSI TS 103 301 [1], clause 5.4.2</td>
		</tr>
			<tr class="pics">
				<td class="header">PICS Selection</td>
				<td class="value" colspan="2">PICS_SPATEM_GENERATION AND PICS_RSU</td>
			</tr>
		<tr class="body"><td colspan="3" class="header">Expected behaviour</td></tr>
		<tr class="body"><td colspan="3" class="value">
			with<br/>&nbsp;&nbsp;&nbsp;&nbsp;the IUT being in the &quot;initial state&quot;<br/>&nbsp;&nbsp;&nbsp;&nbsp;and the IUT sending SPATEM<br/>ensure that<br/>&nbsp;&nbsp;&nbsp;&nbsp;when<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT receives an AppSPATEM _Stop request from the application layer<br/>&nbsp;&nbsp;&nbsp;&nbsp;then<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT stops sending SPATEM
		</td></tr>
	</table></p>
	<p>&nbsp;</p>
	</div>
		
		 

	<div><p><table class="TestPurpose" id="TP_IS_TLM_EVGN_SND_BV_01">
		<tr class="id">
			<td class="header">TP Id</td>
			<td class="value" colspan="2">TP_IS_TLM_EVGN_SND_BV_01</td>
		</tr>
		<tr class="summary">
			<td class="header">Summary</td>
			<td class="value" colspan="2">
					Check that TLM Service generates a new SPATEM on reception of a valid AppSPATEM_Trigger request
			</td>
		</tr>
		<tr class="reference">
			<td class="header">Reference</td>
			<td class="value" colspan="2">ETSI TS 103 301 [1], clause 5.4.2</td>
		</tr>
			<tr class="pics">
				<td class="header">PICS Selection</td>
				<td class="value" colspan="2">PICS_SPATEM_GENERATION AND PICS_RSU_ROLE</td>
			</tr>
		<tr class="body"><td colspan="3" class="header">Expected behaviour</td></tr>
		<tr class="body"><td colspan="3" class="value">
			with<br/>&nbsp;&nbsp;&nbsp;&nbsp;the IUT being in the &quot;initial state&quot;<br/>ensure that<br/>&nbsp;&nbsp;&nbsp;&nbsp;when<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT receives an AppSPATEM_Trigger request from the application layer<br/>&nbsp;&nbsp;&nbsp;&nbsp;then<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT sends a valid SPATEM
		</td></tr>
	</table></p>
	<p>&nbsp;</p>
	</div>
      	<h3>5.1.3	Check presence of destination area</h3>
	

	<div><p><table class="TestPurpose" id="TP_IS_TLM_COM_BV_01">
		<tr class="id">
			<td class="header">TP Id</td>
			<td class="value" colspan="2">TP_IS_TLM_COM_BV_01</td>
		</tr>
		<tr class="summary">
			<td class="header">Summary</td>
			<td class="value" colspan="2">
					Check that TLM Service provides the destination area in SPATEM
			</td>
		</tr>
		<tr class="reference">
			<td class="header">Reference</td>
			<td class="value" colspan="2">ETSI TS 103 301 [1], clause 5.4.3.2</td>
		</tr>
		<tr class="body"><td colspan="3" class="header">Expected behaviour</td></tr>
		<tr class="body"><td colspan="3" class="value">
			with<br/>&nbsp;&nbsp;&nbsp;&nbsp;the IUT being in the &quot;initial state&quot;<br/>&nbsp;&nbsp;&nbsp;&nbsp;and the IUT is configured to use GBC<br/>&nbsp;&nbsp;&nbsp;&nbsp;and the IUT sending SPATEM<br/>ensure that<br/>&nbsp;&nbsp;&nbsp;&nbsp;when<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;a SPATEM is generated<br/>&nbsp;&nbsp;&nbsp;&nbsp;then<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT sends a valid SPATEM<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containg spat<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing regional<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing at least on region<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;indicating a regionId<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;and indication a regExtValue
		</td></tr>
	</table></p>
	<p>&nbsp;</p>
	</div>
		

	<div><p><table class="TestPurpose" id="TP_IS_TLM_COM_SND_BV_01">
		<tr class="id">
			<td class="header">TP Id</td>
			<td class="value" colspan="2">TP_IS_TLM_COM_SND_BV_01</td>
		</tr>
		<tr class="summary">
			<td class="header">Summary</td>
			<td class="value" colspan="2">
					Check that TLM Service provides the destination area in SPATEM
			</td>
		</tr>
		<tr class="reference">
			<td class="header">Reference</td>
			<td class="value" colspan="2">ETSI TS 103 301 [1], clause 5.4.3.2</td>
		</tr>
			<tr class="pics">
				<td class="header">PICS Selection</td>
				<td class="value" colspan="2">PICS_RSU_ROLE</td>
			</tr>
		<tr class="body"><td colspan="3" class="header">Expected behaviour</td></tr>
		<tr class="body"><td colspan="3" class="value">
			with<br/>&nbsp;&nbsp;&nbsp;&nbsp;the IUT being in the &quot;initial state&quot;<br/>&nbsp;&nbsp;&nbsp;&nbsp;and the IUT is configured to use GBC<br/>&nbsp;&nbsp;&nbsp;&nbsp;and the IUT sending SPATEM<br/>ensure that<br/>&nbsp;&nbsp;&nbsp;&nbsp;when<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;a SPATEM is generated<br/>&nbsp;&nbsp;&nbsp;&nbsp;then<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT sends a valid SPATEM<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containg spat<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing regional<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing at least on region<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;indicating a regionId<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;and indication a regExtValue
		</td></tr>
	</table></p>
	<p>&nbsp;</p>
	</div>
      	<h3>5.1.4	Check BTP type and port number</h3>
	

	<div><p><table class="TestPurpose" id="TP_IS_TLM_COM_BV_02">
		<tr class="id">
			<td class="header">TP Id</td>
			<td class="value" colspan="2">TP_IS_TLM_COM_BV_02</td>
		</tr>
		<tr class="summary">
			<td class="header">Summary</td>
			<td class="value" colspan="2">
					Check that SPATEM uses BTP_B packet<br/>Check that the destination port for SPATEM is set to 2004
			</td>
		</tr>
		<tr class="reference">
			<td class="header">Reference</td>
			<td class="value" colspan="2">ETSI TS 103 301 [1], clauses 10.2 and 5.4.3.2</td>
		</tr>
		<tr class="body"><td colspan="3" class="header">Expected behaviour</td></tr>
		<tr class="body"><td colspan="3" class="value">
			with<br/>&nbsp;&nbsp;&nbsp;&nbsp;the IUT being in the &quot;initial state&quot;<br/>&nbsp;&nbsp;&nbsp;&nbsp;and the IUT sending SPATEM<br/>ensure that<br/>&nbsp;&nbsp;&nbsp;&nbsp;when<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;a SPATEM is generated<br/>&nbsp;&nbsp;&nbsp;&nbsp;then<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT sends a valid SPATEM<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;encapsulated in a BTP-B packet<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing a destination port value set to 2004<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;and containing a destination port info value set to 0
		</td></tr>
	</table></p>
	<p>&nbsp;</p>
	</div>
		

	<div><p><table class="TestPurpose" id="TP_IS_TLM_COM_SND_BV_02">
		<tr class="id">
			<td class="header">TP Id</td>
			<td class="value" colspan="2">TP_IS_TLM_COM_SND_BV_02</td>
		</tr>
		<tr class="summary">
			<td class="header">Summary</td>
			<td class="value" colspan="2">
					Check that SPATEM uses BTP_B packet<br/>Check that the destination port for SPATEM is set to 2004
			</td>
		</tr>
		<tr class="reference">
			<td class="header">Reference</td>
			<td class="value" colspan="2">ETSI TS 103 301 [1], clauses 10.2 and 5.4.3.2</td>
		</tr>
			<tr class="pics">
				<td class="header">PICS Selection</td>
				<td class="value" colspan="2">PICS_RSU_ROLE</td>
			</tr>
		<tr class="body"><td colspan="3" class="header">Expected behaviour</td></tr>
		<tr class="body"><td colspan="3" class="value">
			with<br/>&nbsp;&nbsp;&nbsp;&nbsp;the IUT being in the &quot;initial state&quot;<br/>&nbsp;&nbsp;&nbsp;&nbsp;and the IUT sending SPATEM<br/>ensure that<br/>&nbsp;&nbsp;&nbsp;&nbsp;when<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;a SPATEM is generated<br/>&nbsp;&nbsp;&nbsp;&nbsp;then<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT sends a valid SPATEM<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;encapsulated in a BTP-B packet<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing a destination port value set to '2004'<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;and containing a destination port info value set to '0'
		</td></tr>
	</table></p>
	<p>&nbsp;</p>
	</div>
      	<h3>5.1.5	5 Check destination type</h3>
	

	<div><p><table class="TestPurpose" id="TP_IS_TLM_COM_BV_03">
		<tr class="id">
			<td class="header">TP Id</td>
			<td class="value" colspan="2">TP_IS_TLM_COM_BV_03</td>
		</tr>
		<tr class="summary">
			<td class="header">Summary</td>
			<td class="value" colspan="2">
					Check that TLM service encapsulates SPATEM in a GBC with the HeaderType field set to the value of 4
			</td>
		</tr>
		<tr class="reference">
			<td class="header">Reference</td>
			<td class="value" colspan="2">ETSI TS 103 301 [1], clause 5.4.3.2</td>
		</tr>
		<tr class="body"><td colspan="3" class="header">Expected behaviour</td></tr>
		<tr class="body"><td colspan="3" class="value">
			with<br/>&nbsp;&nbsp;&nbsp;&nbsp;the IUT being in the &quot;initial state&quot;<br/>&nbsp;&nbsp;&nbsp;&nbsp;and the IUT sending SPATEM<br/>ensure that<br/>&nbsp;&nbsp;&nbsp;&nbsp;when<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;a SPATEM is generated<br/>&nbsp;&nbsp;&nbsp;&nbsp;then<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; the IUT sends a valid SPATEM<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;encapsulated in a GBC packet<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing a correctly formatted Common Header<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing HeaderType field<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;indicating the value '4'
		</td></tr>
	</table></p>
	<p>&nbsp;</p>
	</div>
		

	<div><p><table class="TestPurpose" id="TP_IS_TLM_COM_SND_BV_03">
		<tr class="id">
			<td class="header">TP Id</td>
			<td class="value" colspan="2">TP_IS_TLM_COM_SND_BV_03</td>
		</tr>
		<tr class="summary">
			<td class="header">Summary</td>
			<td class="value" colspan="2">
					Check that TLM service encapsulates SPATEM in a GBC with the HeaderType field set to the value of 4
			</td>
		</tr>
		<tr class="reference">
			<td class="header">Reference</td>
			<td class="value" colspan="2">ETSI TS 103 301 [1], clause 5.4.3.2</td>
		</tr>
			<tr class="pics">
				<td class="header">PICS Selection</td>
				<td class="value" colspan="2">PICS_RSU_ROLE</td>
			</tr>
		<tr class="body"><td colspan="3" class="header">Expected behaviour</td></tr>
		<tr class="body"><td colspan="3" class="value">
			with<br/>&nbsp;&nbsp;&nbsp;&nbsp;the IUT being in the &quot;initial state&quot;<br/>&nbsp;&nbsp;&nbsp;&nbsp;and the IUT sending SPATEM<br/>ensure that<br/>&nbsp;&nbsp;&nbsp;&nbsp;when<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;a SPATEM is generated<br/>&nbsp;&nbsp;&nbsp;&nbsp;then<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT sends a valid SPATEM<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;encapsulated in a GBC packet<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing a correctly formatted Common Header<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing HeaderType field<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;indicating the value '4'
		</td></tr>
	</table></p>
	<p>&nbsp;</p>
	</div>
      	<h3>5.1.6	TLM security parameters</h3>
	
      	<h4>5.1.6.1	Check TLM SSP version</h4>
	
      	<h4>5.1.6.2	Check TLM Service specific parameters</h4>
	
      	<h4>5.1.6.3	Check TLM ITS AID value</h4>
	
      	<h4>5.1.6.4	Check that unused SSP bits are set to 0</h4>
	
      	<h2>5.2	Road and Lane Topology (RLT) service</h2>
	
      	<h3>5.2.1	Check that RLT protocol version is set to 1</h3>
	
		

	<div><p><table class="TestPurpose" id="TP_IS_RLT_MSGF_RCV_BV_01">
		<tr class="id">
			<td class="header">TP Id</td>
			<td class="value" colspan="2">TP_IS_RLT_MSGF_RCV_BV_01</td>
		</tr>
		<tr class="summary">
			<td class="header">Summary</td>
			<td class="value" colspan="2">
					Check that the IUT can successfully process all mandatory fields of MAPEM received
			</td>
		</tr>
		<tr class="reference">
			<td class="header">Reference</td>
			<td class="value" colspan="2">ETSI TS 103 301 [1], clause 6.3</td>
		</tr>
			<tr class="pics">
				<td class="header">PICS Selection</td>
				<td class="value" colspan="2">NOT PICS_RSU_ROLE</td>
			</tr>
		<tr class="body"><td colspan="3" class="header">Expected behaviour</td></tr>
		<tr class="body"><td colspan="3" class="value">
			with<br/>&nbsp;&nbsp;&nbsp;&nbsp;the IUT being in the &quot;initial state&quot;<br/>ensure that<br/>&nbsp;&nbsp;&nbsp;&nbsp;when<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT receives a valid MAPEM <br/>&nbsp;&nbsp;&nbsp;&nbsp;then<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT forwards the MAPEM content to upper layers<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;and the IUT forwards the MAPEM content to other facilities
		</td></tr>
	</table></p>
	<p>&nbsp;</p>
	</div>
		

	<div><p><table class="TestPurpose" id="TP_IS_RLT_MSGF_SND_BV_01">
		<tr class="id">
			<td class="header">TP Id</td>
			<td class="value" colspan="2">TP_IS_RLT_MSGF_SND_BV_01</td>
		</tr>
		<tr class="summary">
			<td class="header">Summary</td>
			<td class="value" colspan="2">
					Check that protocolVersion is set to 1 and messageID is set to 4
			</td>
		</tr>
		<tr class="reference">
			<td class="header">Reference</td>
			<td class="value" colspan="2">ETSI TS 103 301 [1], clause 6.3</td>
		</tr>
			<tr class="pics">
				<td class="header">PICS Selection</td>
				<td class="value" colspan="2">PICS_RSU_ROLE</td>
			</tr>
		<tr class="body"><td colspan="3" class="header">Expected behaviour</td></tr>
		<tr class="body"><td colspan="3" class="value">
			with<br/>&nbsp;&nbsp;&nbsp;&nbsp;the IUT being in the &quot;initial state&quot;<br/>&nbsp;&nbsp;&nbsp;&nbsp;and the IUT sending MAPEM<br/>ensure that<br/>&nbsp;&nbsp;&nbsp;&nbsp;when<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;a MAPEM is generated<br/>&nbsp;&nbsp;&nbsp;&nbsp;then<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT sends a valid MAPEM<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing ITS PDU header<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing protocolVersion<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;indicating value '1'<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;and containing messageID<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;indicating value '5'
		</td></tr>
	</table></p>
	<p>&nbsp;</p>
	</div>
      	<h3>5.2.2	Check the RLT message fragmenting</h3>
	
		

	<div><p><table class="TestPurpose" id="TP_IS_RLT_INFO_SND_BV_01">
		<tr class="id">
			<td class="header">TP Id</td>
			<td class="value" colspan="2">TP_IS_RLT_INFO_SND_BV_01</td>
		</tr>
		<tr class="summary">
			<td class="header">Summary</td>
			<td class="value" colspan="2">
					Check that IVI Service generates a new MAPEM on reception of a valid AppMAPEM_Trigger request
			</td>
		</tr>
		<tr class="reference">
			<td class="header">Reference</td>
			<td class="value" colspan="2">ETSI TS 103 301 [1], clause 6.4.1</td>
		</tr>
			<tr class="pics">
				<td class="header">PICS Selection</td>
				<td class="value" colspan="2">PICS_RSU_ROLE</td>
			</tr>
		<tr class="body"><td colspan="3" class="header">Expected behaviour</td></tr>
		<tr class="body"><td colspan="3" class="value">
			with<br/>&nbsp;&nbsp;&nbsp;&nbsp;the IUT being in the &quot;initial state&quot;<br/>ensure that<br/>&nbsp;&nbsp;&nbsp;&nbsp;when<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT receives an AppMAPEM_Trigger request from the application layer<br/>&nbsp;&nbsp;&nbsp;&nbsp;then<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT sends a valid MAPEM
		</td></tr>
	</table></p>
	<p>&nbsp;</p>
	</div>
		

	<div><p><table class="TestPurpose" id="TP_IS_RLT_INFO_SND_BV_02">
		<tr class="id">
			<td class="header">TP Id</td>
			<td class="value" colspan="2">TP_IS_RLT_INFO_SND_BV_02</td>
		</tr>
		<tr class="summary">
			<td class="header">Summary</td>
			<td class="value" colspan="2">
					Check that RLT Service transmits new content
			</td>
		</tr>
		<tr class="reference">
			<td class="header">Reference</td>
			<td class="value" colspan="2">ETSI TS 103 301 [1], clause 6.4.1</td>
		</tr>
			<tr class="pics">
				<td class="header">PICS Selection</td>
				<td class="value" colspan="2">PICS_RSU_ROLE</td>
			</tr>
		<tr class="body"><td colspan="3" class="header">Expected behaviour</td></tr>
		<tr class="body"><td colspan="3" class="value">
			with<br/>&nbsp;&nbsp;&nbsp;&nbsp;the IUT being in the &quot;initial state&quot;<br/>&nbsp;&nbsp;&nbsp;&nbsp;and the IUT sending MAPEM<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing map<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;not containing LayerType<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;and not containing LayerID<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;and containing restrictionList<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;indicating the value RL_1<br/>ensure that<br/>&nbsp;&nbsp;&nbsp;&nbsp;when<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT is alerted about a new restrictionList indicating the value RL_2<br/>&nbsp;&nbsp;&nbsp;&nbsp;then<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT sends a valid MAPEM<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing map<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;not containing LayerType<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;and not containing LayerID<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;and containing restrictionList<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;indicating indicating the value R_2
		</td></tr>
	</table></p>
	<p>&nbsp;</p>
	</div>
		

	<div><p><table class="TestPurpose" id="TP_IS_RLT_INFO_SND_BV_03">
		<tr class="id">
			<td class="header">TP Id</td>
			<td class="value" colspan="2">TP_IS_RLT_INFO_SND_BV_03</td>
		</tr>
		<tr class="summary">
			<td class="header">Summary</td>
			<td class="value" colspan="2">
					Check that RLT Service generates MAPEM are time ordered
			</td>
		</tr>
		<tr class="reference">
			<td class="header">Reference</td>
			<td class="value" colspan="2">ETSI TS 103 301 [1], clause 6.4.1</td>
		</tr>
			<tr class="pics">
				<td class="header">PICS Selection</td>
				<td class="value" colspan="2">PICS_RSU_ROLE</td>
			</tr>
		<tr class="body"><td colspan="3" class="header">Expected behaviour</td></tr>
		<tr class="body"><td colspan="3" class="value">
			with<br/>&nbsp;&nbsp;&nbsp;&nbsp;the IUT being in the &quot;initial state&quot;<br/>&nbsp;&nbsp;&nbsp;&nbsp;and the IUT has sent a MAPEM<br/>ensure that<br/>&nbsp;&nbsp;&nbsp;&nbsp;when<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;several MAPEM are generated<br/>&nbsp;&nbsp;&nbsp;&nbsp;then<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT sends MAPEM in time order
		</td></tr>
	</table></p>
	<p>&nbsp;</p>
	</div>
		

	<div><p><table class="TestPurpose" id="TP_IS_RLT_INFO_SND_BV_04">
		<tr class="id">
			<td class="header">TP Id</td>
			<td class="value" colspan="2">TP_IS_RLT_INFO_SND_BV_04</td>
		</tr>
		<tr class="summary">
			<td class="header">Summary</td>
			<td class="value" colspan="2">
					Check that RLT Service transmits fragmented MAPEM when the message size exceeds the allowed message length 
			</td>
		</tr>
		<tr class="reference">
			<td class="header">Reference</td>
			<td class="value" colspan="2">ETSI TS 103 301 [1], clause 6.4.1</td>
		</tr>
			<tr class="pics">
				<td class="header">PICS Selection</td>
				<td class="value" colspan="2">PICS_RSU_ROLE</td>
			</tr>
		<tr class="body"><td colspan="3" class="header">Expected behaviour</td></tr>
		<tr class="body"><td colspan="3" class="value">
			with<br/>&nbsp;&nbsp;&nbsp;&nbsp;the IUT being in the &quot;initial state&quot;<br/>&nbsp;&nbsp;&nbsp;&nbsp;and the IUT sending MAPEM<br/>ensure that<br/>&nbsp;&nbsp;&nbsp;&nbsp;when<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT is alerted about a new content<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;indicating a new value which exceeds the allowed message length <br/>&nbsp;&nbsp;&nbsp;&nbsp;then<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT sends a first valid MAPEM<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing map<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing LayerType<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;and containing LayerID<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;indication a value LID_1<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;and the IUT sends a second valid MAPEM<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing map<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing LayerType<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;and containing LayerID<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;indication a value LID_2 = LID_1 + 1<br/>
		</td></tr>
	</table></p>
	<p>&nbsp;</p>
	</div>
      	<h3>5.2.3	Check continious transmition with the SPAT messages</h3>
	
		

	<div><p><table class="TestPurpose" id="TP_IS_RLT_COM_SND_BV_01">
		<tr class="id">
			<td class="header">TP Id</td>
			<td class="value" colspan="2">TP_IS_RLT_COM_SND_BV_01</td>
		</tr>
		<tr class="summary">
			<td class="header">Summary</td>
			<td class="value" colspan="2">
					Check that the RLT Service transmits continuously both MAPEM and SPATEM
			</td>
		</tr>
		<tr class="reference">
			<td class="header">Reference</td>
			<td class="value" colspan="2">ETSI TS 103 301 [1], clause 6.4.3.1</td>
		</tr>
			<tr class="pics">
				<td class="header">PICS Selection</td>
				<td class="value" colspan="2">PICS_RSU_ROLE</td>
			</tr>
		<tr class="body"><td colspan="3" class="header">Expected behaviour</td></tr>
		<tr class="body"><td colspan="3" class="value">
			with<br/>&nbsp;&nbsp;&nbsp;&nbsp;the IUT being in the &quot;initial state&quot;<br/>&nbsp;&nbsp;&nbsp;&nbsp;and the IUT sending MAPEM<br/>&nbsp;&nbsp;&nbsp;&nbsp;and the IUT has not sent any SPATEM yet<br/>ensure that<br/>&nbsp;&nbsp;&nbsp;&nbsp;when<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT receives an AppSPATEM_Start request from the application layer<br/>&nbsp;&nbsp;&nbsp;&nbsp;then<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT sends a valid SPATEM<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;and the IUT sends a valid MAPEM
		</td></tr>
	</table></p>
	<p>&nbsp;</p>
	</div>
      	<h3>5.2.4	Check BTP type and port number</h3>
	
		

	<div><p><table class="TestPurpose" id="TP_IS_RLT_COM_SND_BV_02">
		<tr class="id">
			<td class="header">TP Id</td>
			<td class="value" colspan="2">TP_IS_RLT_COM_SND_BV_02</td>
		</tr>
		<tr class="summary">
			<td class="header">Summary</td>
			<td class="value" colspan="2">
					Check that MAPEM uses BTP_B packet<br/>Check that the destination port for MAPEM is set to 2003
			</td>
		</tr>
		<tr class="reference">
			<td class="header">Reference</td>
			<td class="value" colspan="2">ETSI TS 103 301 [1], clauses 10.2 and 6.4.3.2</td>
		</tr>
			<tr class="pics">
				<td class="header">PICS Selection</td>
				<td class="value" colspan="2">PICS_RSU_ROLE</td>
			</tr>
		<tr class="body"><td colspan="3" class="header">Expected behaviour</td></tr>
		<tr class="body"><td colspan="3" class="value">
			with<br/>&nbsp;&nbsp;&nbsp;&nbsp;the IUT being in the &quot;initial state&quot;<br/>&nbsp;&nbsp;&nbsp;&nbsp;and the IUT sending MAPEM<br/>ensure that<br/>&nbsp;&nbsp;&nbsp;&nbsp;when<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;a MAPEM is generated<br/>&nbsp;&nbsp;&nbsp;&nbsp;then<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT sends a valid MAPEM<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;encapsulated in a BTP-B packet<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing a destination port value set to '2003'<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;and containing a destination port info value set to '0'
		</td></tr>
	</table></p>
	<p>&nbsp;</p>
	</div>
      	<h3>5.2.5	Check destination type</h3>
	
		

	<div><p><table class="TestPurpose" id="TP_IS_RLT_COM_SND_BV_03">
		<tr class="id">
			<td class="header">TP Id</td>
			<td class="value" colspan="2">TP_IS_RLT_COM_SND_BV_03</td>
		</tr>
		<tr class="summary">
			<td class="header">Summary</td>
			<td class="value" colspan="2">
					Check that TLM service encapsulates MAPEM in a GBC with the HeaderType field set to the value of 4
			</td>
		</tr>
		<tr class="reference">
			<td class="header">Reference</td>
			<td class="value" colspan="2">ETSI TS 103 301 [1], clause 6.4.3.2</td>
		</tr>
			<tr class="pics">
				<td class="header">PICS Selection</td>
				<td class="value" colspan="2">PICS_RSU_ROLE</td>
			</tr>
		<tr class="body"><td colspan="3" class="header">Expected behaviour</td></tr>
		<tr class="body"><td colspan="3" class="value">
			with<br/>&nbsp;&nbsp;&nbsp;&nbsp;the IUT being in the &quot;initial state&quot;<br/>&nbsp;&nbsp;&nbsp;&nbsp;and the IUT sending MAPEM<br/>ensure that<br/>&nbsp;&nbsp;&nbsp;&nbsp;when<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;a MAPEM is generated<br/>&nbsp;&nbsp;&nbsp;&nbsp;then<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT sends a valid MAPEM<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;encapsulated in a GBC packet<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing a correctly formatted Common Header<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing HeaderType field<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;indicating the value '4'
		</td></tr>
	</table></p>
	<p>&nbsp;</p>
	</div>
      	<h3>5.2.6	RLT security parameters</h3>
	
      	<h4>5.2.6.1	Check RLT SSP version</h4>
	
      	<h4>5.2.6.2	Check RLT Service specific parameters</h4>
	
      	<h4>5.2.6.3	Check RLT ITS ID value</h4>
	
      	<h4>5.2.6.4	Check that unused SSP bits are set to 0</h4>
	
      	<h2>5.3	Infrastructure to Vehicle Information (IVI) service</h2>
	
      	<h3>5.3.1	Check that IVIM protocol version is set to 1</h3>
	
		

	<div><p><table class="TestPurpose" id="TP_IS_IVI_MSGF_RCV_BV_01">
		<tr class="id">
			<td class="header">TP Id</td>
			<td class="value" colspan="2">TP_IS_IVI_MSGF_RCV_BV_01</td>
		</tr>
		<tr class="summary">
			<td class="header">Summary</td>
			<td class="value" colspan="2">
					Check that the IUT can successfully process all mandatory fields of IVIM received
			</td>
		</tr>
		<tr class="reference">
			<td class="header">Reference</td>
			<td class="value" colspan="2">ETSI TS 103 301 [1], clause 7.3</td>
		</tr>
			<tr class="pics">
				<td class="header">PICS Selection</td>
				<td class="value" colspan="2">NOT PICS_RSU_ROLE</td>
			</tr>
		<tr class="body"><td colspan="3" class="header">Expected behaviour</td></tr>
		<tr class="body"><td colspan="3" class="value">
			with<br/>&nbsp;&nbsp;&nbsp;&nbsp;the IUT being in the &quot;initial state&quot;<br/>ensure that<br/>&nbsp;&nbsp;&nbsp;&nbsp;when<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT receives a valid IVIM <br/>&nbsp;&nbsp;&nbsp;&nbsp;then<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT forwards the IVIM&nbsp;&nbsp;&nbsp;&nbsp;content to upper layers<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;and the IUT forwards the IVIM content to other facilities
		</td></tr>
	</table></p>
	<p>&nbsp;</p>
	</div>
		

	<div><p><table class="TestPurpose" id="TP_IS_IVI_MSGF_SND_BV_01">
		<tr class="id">
			<td class="header">TP Id</td>
			<td class="value" colspan="2">TP_IS_IVI_MSGF_SND_BV_01</td>
		</tr>
		<tr class="summary">
			<td class="header">Summary</td>
			<td class="value" colspan="2">
					Check that protocolVersion is set to 1 and messageID is set to 6
			</td>
		</tr>
		<tr class="reference">
			<td class="header">Reference</td>
			<td class="value" colspan="2">ETSI TS 103 301 [1], clause 7.3</td>
		</tr>
			<tr class="pics">
				<td class="header">PICS Selection</td>
				<td class="value" colspan="2">PICS_RSU_ROLE</td>
			</tr>
		<tr class="body"><td colspan="3" class="header">Expected behaviour</td></tr>
		<tr class="body"><td colspan="3" class="value">
			with<br/>&nbsp;&nbsp;&nbsp;&nbsp;the IUT being in the &quot;initial state&quot;<br/>&nbsp;&nbsp;&nbsp;&nbsp;and the IUT sending IVIM<br/>ensure that<br/>&nbsp;&nbsp;&nbsp;&nbsp;when<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;a IVIM is generated<br/>&nbsp;&nbsp;&nbsp;&nbsp;then<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT sends a valid IVIM<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing ITS PDU header<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing protocolVersion<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;indicating value '1'<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;and containing messageID<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;indicating value '6'
		</td></tr>
	</table></p>
	<p>&nbsp;</p>
	</div>
      	<h3>5.3.2	Check that new iviIdentificationNumber value is generated for each new request</h3>
	
		

	<div><p><table class="TestPurpose" id="TP_IS_IVI_EVGN_BV_01">
		<tr class="id">
			<td class="header">TP Id</td>
			<td class="value" colspan="2">TP_IS_IVI_EVGN_BV_01</td>
		</tr>
		<tr class="summary">
			<td class="header">Summary</td>
			<td class="value" colspan="2">
					Check that IVI Service generates a new IVIM on reception of a valid AppIVIM_Trigger request
			</td>
		</tr>
		<tr class="reference">
			<td class="header">Reference</td>
			<td class="value" colspan="2">ETSI TS 103 301 [1], clause 7.4.1</td>
		</tr>
			<tr class="pics">
				<td class="header">PICS Selection</td>
				<td class="value" colspan="2">PICS_IVIM_GENERATION</td>
			</tr>
		<tr class="body"><td colspan="3" class="header">Expected behaviour</td></tr>
		<tr class="body"><td colspan="3" class="value">
			with<br/>&nbsp;&nbsp;&nbsp;&nbsp;the IUT being in the &quot;initial state&quot;<br/>ensure that<br/>&nbsp;&nbsp;&nbsp;&nbsp;when<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT receives an AppIVIM_Trigger request from the application layer<br/>&nbsp;&nbsp;&nbsp;&nbsp;then<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; the IUT sends a valid IVIM
		</td></tr>
	</table></p>
	<p>&nbsp;</p>
	</div>
		

	<div><p><table class="TestPurpose" id="TP_IS_IVI_EVGN_BV_02">
		<tr class="id">
			<td class="header">TP Id</td>
			<td class="value" colspan="2">TP_IS_IVI_EVGN_BV_02</td>
		</tr>
		<tr class="summary">
			<td class="header">Summary</td>
			<td class="value" colspan="2">
					Check that a new iviIdentificationNumber value is assigned for each newly generated IVIM
			</td>
		</tr>
		<tr class="reference">
			<td class="header">Reference</td>
			<td class="value" colspan="2">ETSI TS 103 301 [1], clause 7.4.1</td>
		</tr>
			<tr class="pics">
				<td class="header">PICS Selection</td>
				<td class="value" colspan="2">PICS_IVIM_GENERATION</td>
			</tr>
		<tr class="body"><td colspan="3" class="header">Expected behaviour</td></tr>
		<tr class="body"><td colspan="3" class="value">
			with<br/>&nbsp;&nbsp;&nbsp;&nbsp;the IUT being in the &quot;initial state&quot;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; and the IUT having generated several IVIM<br/>ensure that<br/>&nbsp;&nbsp;&nbsp;&nbsp;when<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT is requested to generate a new IVIM<br/>&nbsp;&nbsp;&nbsp;&nbsp;then<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; the IUT sends a valid IVIM<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; containing ivi<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; containing mandatory<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; containing iviIdentificationNumber<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; indicating an unused value
		</td></tr>
	</table></p>
	<p>&nbsp;</p>
	</div>
      	<h3>5.3.3	Check that the value of iviIdentificationNumber is not used recently</h3>
	
		

	<div><p><table class="TestPurpose" id="TP_IS_IVI_EVGN_SND_BV_03">
		<tr class="id">
			<td class="header">TP Id</td>
			<td class="value" colspan="2">TP_IS_IVI_EVGN_SND_BV_03</td>
		</tr>
		<tr class="summary">
			<td class="header">Summary</td>
			<td class="value" colspan="2">
					Check that iviIdentificationNumber value is set to a next unused value each time an IVIM is detected
			</td>
		</tr>
		<tr class="reference">
			<td class="header">Reference</td>
			<td class="value" colspan="2">ETSI TS 103 301 [1], clause 7.4.1</td>
		</tr>
			<tr class="pics">
				<td class="header">PICS Selection</td>
				<td class="value" colspan="2">PICS_RSU_ROLE</td>
			</tr>
		<tr class="body"><td colspan="3" class="header">Expected behaviour</td></tr>
		<tr class="body"><td colspan="3" class="value">
			with<br/>&nbsp;&nbsp;&nbsp;&nbsp;the IUT being in the &quot;initial state&quot;<br/>&nbsp;&nbsp;&nbsp;&nbsp;and the IUT having generated several IVIM<br/>&nbsp;&nbsp;&nbsp;&nbsp;and the IUT having generated its last DENM<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing ivi<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing mandatory<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing iviIdentificationNumber<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;indicating IVI_ID_1<br/>&nbsp;&nbsp;&nbsp;&nbsp;and no active IviID being associated with iviIdentificationNumber IVI_ID_1 + 1<br/>ensure that<br/>&nbsp;&nbsp;&nbsp;&nbsp;when<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT is requested to generate a new IVIM<br/>&nbsp;&nbsp;&nbsp;&nbsp;then<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT sends a valid IVIM<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing ivi<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing mandatory<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing iviIdentificationNumber<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;indicating IVI_ID_1 + 1
		</td></tr>
	</table></p>
	<p>&nbsp;</p>
	</div>
      	<h3>5.3.4	Check that a new generated IVIM contains an iviStatus set to 'new'</h3>
	
		

	<div><p><table class="TestPurpose" id="TP_IS_IVI_EVGN_SND_BV_04">
		<tr class="id">
			<td class="header">TP Id</td>
			<td class="value" colspan="2">TP_IS_IVI_EVGN_SND_BV_04</td>
		</tr>
		<tr class="summary">
			<td class="header">Summary</td>
			<td class="value" colspan="2">
					Check that a new generated IVIM contains an iviStatus set to 'new'
			</td>
		</tr>
		<tr class="reference">
			<td class="header">Reference</td>
			<td class="value" colspan="2">ETSI TS 103 301 [1], clause 7.4.2</td>
		</tr>
			<tr class="pics">
				<td class="header">PICS Selection</td>
				<td class="value" colspan="2">PICS_RSU_ROLE</td>
			</tr>
		<tr class="body"><td colspan="3" class="header">Expected behaviour</td></tr>
		<tr class="body"><td colspan="3" class="value">
			with<br/>&nbsp;&nbsp;&nbsp;&nbsp;the IUT being in the &quot;initial state&quot;<br/>ensure that<br/>&nbsp;&nbsp;&nbsp;&nbsp;when<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT is requested to generate a new IVIM<br/>&nbsp;&nbsp;&nbsp;&nbsp;then<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT sends a valid IVIM<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing ivi<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing mandatory<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing iviStatus<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;indicating 'new'
		</td></tr>
	</table></p>
	<p>&nbsp;</p>
	</div>
      	<h3>5.3.5	Check that an updated IVIM contains an iviStatus set to 'update'</h3>
	
		

	<div><p><table class="TestPurpose" id="TP_IS_IVI_EVGN_SND_BV_05">
		<tr class="id">
			<td class="header">TP Id</td>
			<td class="value" colspan="2">TP_IS_IVI_EVGN_SND_BV_05</td>
		</tr>
		<tr class="summary">
			<td class="header">Summary</td>
			<td class="value" colspan="2">
					Check that an updated IVIM contains an iviStatus set to 'update'
			</td>
		</tr>
		<tr class="reference">
			<td class="header">Reference</td>
			<td class="value" colspan="2">ETSI TS 103 301 [1], clause 7.4.2</td>
		</tr>
			<tr class="pics">
				<td class="header">PICS Selection</td>
				<td class="value" colspan="2">PICS_RSU_ROLE</td>
			</tr>
		<tr class="body"><td colspan="3" class="header">Expected behaviour</td></tr>
		<tr class="body"><td colspan="3" class="value">
			with<br/>&nbsp;&nbsp;&nbsp;&nbsp;the IUT being in the &quot;initial state&quot;<br/>&nbsp;&nbsp;&nbsp;&nbsp;and the IUT having generated an event<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing ivi<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing mandatory<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing iviIdentificationNumber <br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;indicating IVIM_ID_1<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing iviStatus<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;indicating 'new'<br/>ensure that<br/>&nbsp;&nbsp;&nbsp;&nbsp;when<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT receives an AppIVIM_update request associated with IVIM_ID_1<br/>&nbsp;&nbsp;&nbsp;&nbsp;then<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT sends a valid IVIM<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing ivi<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing mandatory<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing iviStatus<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;indicating 'update'
		</td></tr>
	</table></p>
	<p>&nbsp;</p>
	</div>
      	<h3>5.3.6	Check that an update  can change or add the end time to the IVIM</h3>
	
		

	<div><p><table class="TestPurpose" id="TP_IS_IVI_EVGN_SND_BV_06">
		<tr class="id">
			<td class="header">TP Id</td>
			<td class="value" colspan="2">TP_IS_IVI_EVGN_SND_BV_06</td>
		</tr>
		<tr class="summary">
			<td class="header">Summary</td>
			<td class="value" colspan="2">
					Check that an update can add the end time to the IVIM
			</td>
		</tr>
		<tr class="reference">
			<td class="header">Reference</td>
			<td class="value" colspan="2">ETSI TS 103 301 [1], clause 7.4.2</td>
		</tr>
			<tr class="pics">
				<td class="header">PICS Selection</td>
				<td class="value" colspan="2">PICS_RSU_ROLE</td>
			</tr>
		<tr class="body"><td colspan="3" class="header">Expected behaviour</td></tr>
		<tr class="body"><td colspan="3" class="value">
			with<br/>&nbsp;&nbsp;&nbsp;&nbsp;the IUT being in the &quot;initial state&quot;<br/>&nbsp;&nbsp;&nbsp;&nbsp;and the IUT having generated an event<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing ivi<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing mandatory<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;not containing validTo<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;and containing iviStatus<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;indicating 'update'<br/>ensure that<br/>&nbsp;&nbsp;&nbsp;&nbsp;when<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT receives an AppIVIM_update indicating a validTo value VT_1<br/>&nbsp;&nbsp;&nbsp;&nbsp;then<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT sends a valid IVIM<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing ivi<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing mandatory<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing validTo<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;indicating VT_1<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;and containing iviStatus<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;indicating 'update'
		</td></tr>
	</table></p>
	<p>&nbsp;</p>
	</div>
		

	<div><p><table class="TestPurpose" id="TP_IS_IVI_EVGN_SND_BV_07">
		<tr class="id">
			<td class="header">TP Id</td>
			<td class="value" colspan="2">TP_IS_IVI_EVGN_SND_BV_07</td>
		</tr>
		<tr class="summary">
			<td class="header">Summary</td>
			<td class="value" colspan="2">
					Check that an update can change the end time to the IVIM
			</td>
		</tr>
		<tr class="reference">
			<td class="header">Reference</td>
			<td class="value" colspan="2">ETSI TS 103 301 [1], clause 7.4.2</td>
		</tr>
			<tr class="pics">
				<td class="header">PICS Selection</td>
				<td class="value" colspan="2">PICS_RSU_ROLE</td>
			</tr>
		<tr class="body"><td colspan="3" class="header">Expected behaviour</td></tr>
		<tr class="body"><td colspan="3" class="value">
			with<br/>&nbsp;&nbsp;&nbsp;&nbsp;the IUT being in the &quot;initial state&quot;<br/>&nbsp;&nbsp;&nbsp;&nbsp;and the IUT having generated an event<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing ivi<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing mandatory<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing validTo<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;indicating VT_1<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing iviStatus<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;indicating 'update'<br/>ensure that<br/>&nbsp;&nbsp;&nbsp;&nbsp;when<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT receives an AppIVIM_update indicating a validTo value VT_2<br/>&nbsp;&nbsp;&nbsp;&nbsp;then<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT sends a valid IVIM<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing ivi<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing mandatory<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing validTo<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;indicating VT_2<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing iviStatus<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;indicating 'update'
		</td></tr>
	</table></p>
	<p>&nbsp;</p>
	</div>
      	<h3>5.3.7	Check that the timeStamp is set to the current time when generating a new IVM or last change of information content (if iviStatus set to update)</h3>
	
		

	<div><p><table class="TestPurpose" id="TP_IS_IVI_EVGN_SND_BV_08">
		<tr class="id">
			<td class="header">TP Id</td>
			<td class="value" colspan="2">TP_IS_IVI_EVGN_SND_BV_08</td>
		</tr>
		<tr class="summary">
			<td class="header">Summary</td>
			<td class="value" colspan="2">
					Check that the timeStamp is set to the current time when generating a new IVM
			</td>
		</tr>
		<tr class="reference">
			<td class="header">Reference</td>
			<td class="value" colspan="2">ETSI TS 103 301 [1], clause 7.4.2</td>
		</tr>
			<tr class="pics">
				<td class="header">PICS Selection</td>
				<td class="value" colspan="2">PICS_RSU_ROLE</td>
			</tr>
		<tr class="body"><td colspan="3" class="header">Expected behaviour</td></tr>
		<tr class="body"><td colspan="3" class="value">
			with<br/>&nbsp;&nbsp;&nbsp;&nbsp;the IUT being in the &quot;initial state&quot;<br/>ensure that<br/>&nbsp;&nbsp;&nbsp;&nbsp;when<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT is requested to generate a new IVIM<br/>&nbsp;&nbsp;&nbsp;&nbsp;then<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT sends a valid IVIM<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing ivi<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing mandatory<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing timeStamp<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;indicating CLT<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing iviStatus<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;indicating 'new'
		</td></tr>
	</table></p>
	<p>&nbsp;</p>
	</div>
		

	<div><p><table class="TestPurpose" id="TP_IS_IVI_EVGN_SND_BV_09">
		<tr class="id">
			<td class="header">TP Id</td>
			<td class="value" colspan="2">TP_IS_IVI_EVGN_SND_BV_09</td>
		</tr>
		<tr class="summary">
			<td class="header">Summary</td>
			<td class="value" colspan="2">
					Check that the timeStamp is set to the current time when generating an update with some change of information content
			</td>
		</tr>
		<tr class="reference">
			<td class="header">Reference</td>
			<td class="value" colspan="2">ETSI TS 103 301 [1], clause 7.4.2</td>
		</tr>
			<tr class="pics">
				<td class="header">PICS Selection</td>
				<td class="value" colspan="2">PICS_RSU_ROLE</td>
			</tr>
		<tr class="body"><td colspan="3" class="header">Expected behaviour</td></tr>
		<tr class="body"><td colspan="3" class="value">
			with<br/>&nbsp;&nbsp;&nbsp;&nbsp;the IUT being in the &quot;initial state&quot;<br/>&nbsp;&nbsp;&nbsp;&nbsp;and the IUT having generated an event<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing ivi<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing mandatory<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;not containing validTo<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;and containing iviStatus<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;indicating 'update'<br/>ensure that<br/>&nbsp;&nbsp;&nbsp;&nbsp;when<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT receives an AppIVIM_update indicating a validTo<br/>&nbsp;&nbsp;&nbsp;&nbsp;then<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the IUT sends a valid IVIM<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing ivi<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing mandatory<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing timeStamp<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;indicating CLT<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;containing iviStatus<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;indicating 'update'
		</td></tr>
	</table></p>
	<p>&nbsp;</p>
	</div>
      	<h3>5.3.8	Check that the iviIdentificationNumber remains unchanged IVIM is updated</h3>
	
		

	<div><p><table class="TestPurpose" id="TP_IS_IVI_EVGN_SND_BV_10">
		<tr class="id">
			<td class="header">TP Id</td>
			<td class="value" colspan="2">TP_IS_IVI_EVGN_SND_BV_10</td>