@@ -51,18 +51,18 @@ public function testGetLocalizedTypeNameCombination(): void
51
51
//We only test in english
52
52
$ this ->assertSame ('Part ' , $ this ->service ->getLocalizedTypeLabel (new Part ()));
53
53
$ this ->assertSame ('Category ' , $ this ->service ->getLocalizedTypeLabel (new Category ()));
54
- $ this ->assertSame ('bulk_info_provider_import_job.label ' , $ this ->service ->getLocalizedTypeLabel (new BulkInfoProviderImportJob ()));
54
+ $ this ->assertSame ('Bulk Info Provider Import ' , $ this ->service ->getLocalizedTypeLabel (new BulkInfoProviderImportJob ()));
55
55
56
56
//Test inheritance
57
57
$ this ->assertSame ('Attachment ' , $ this ->service ->getLocalizedTypeLabel (new PartAttachment ()));
58
58
59
59
//Test for class name
60
60
$ this ->assertSame ('Part ' , $ this ->service ->getLocalizedTypeLabel (Part::class));
61
- $ this ->assertSame ('bulk_info_provider_import_job.label ' , $ this ->service ->getLocalizedTypeLabel (BulkInfoProviderImportJob::class));
61
+ $ this ->assertSame ('Bulk Info Provider Import ' , $ this ->service ->getLocalizedTypeLabel (BulkInfoProviderImportJob::class));
62
62
63
63
//Test exception for unknpwn type
64
64
$ this ->expectException (EntityNotSupportedException::class);
65
- $ this ->service ->getLocalizedTypeLabel (new class () extends AbstractDBElement {
65
+ $ this ->service ->getLocalizedTypeLabel (new class () extends AbstractDBElement {
66
66
});
67
67
}
68
68
@@ -77,7 +77,7 @@ public function testGetTypeNameCombination(): void
77
77
78
78
//Test exception
79
79
$ this ->expectException (EntityNotSupportedException::class);
80
- $ this ->service ->getTypeNameCombination (new class () extends AbstractNamedDBElement {
80
+ $ this ->service ->getTypeNameCombination (new class () extends AbstractNamedDBElement {
81
81
public function getIDString (): string
82
82
{
83
83
return 'Stub ' ;
0 commit comments