@@ 62-68 (lines=7) @@ | ||
59 | ); |
|
60 | } |
|
61 | ||
62 | public function testIgnoredServicesInvalid() |
|
63 | { |
|
64 | $this->expectException(InvalidTypeException::class); |
|
65 | $this->processor->process($this->configTreeBuilder->buildTree(), ["autowiring" => [ |
|
66 | "ignored_services" => "", |
|
67 | ]]); |
|
68 | } |
|
69 | ||
70 | public function testIgnoredServices() |
|
71 | { |
|
@@ 85-91 (lines=7) @@ | ||
82 | ); |
|
83 | } |
|
84 | ||
85 | public function testPreferredServicesInvalid() |
|
86 | { |
|
87 | $this->expectException(InvalidTypeException::class); |
|
88 | $this->processor->process($this->configTreeBuilder->buildTree(), ["autowiring" => [ |
|
89 | "preferred_services" => "", |
|
90 | ]]); |
|
91 | } |
|
92 | ||
93 | public function testPreferredServices() |
|
94 | { |
|
@@ 108-114 (lines=7) @@ | ||
105 | ); |
|
106 | } |
|
107 | ||
108 | public function testFastAnnotationChecksInvalid() |
|
109 | { |
|
110 | $this->expectException(InvalidTypeException::class); |
|
111 | $this->processor->process($this->configTreeBuilder->buildTree(), ["autowiring" => [ |
|
112 | "fast_annotation_checks" => "", |
|
113 | ]]); |
|
114 | } |
|
115 | ||
116 | public function testFastAnnotationChecks() |
|
117 | { |
|
@@ 131-137 (lines=7) @@ | ||
128 | ); |
|
129 | } |
|
130 | ||
131 | public function testFastAnnotationChecksEnabledInvalid() |
|
132 | { |
|
133 | $this->expectException(InvalidTypeException::class); |
|
134 | $this->processor->process($this->configTreeBuilder->buildTree(), ["autowiring" => [ |
|
135 | "fast_annotation_checks_enabled" => "", |
|
136 | ]]); |
|
137 | } |
|
138 | ||
139 | public function testFastAnnotationChecksEnabled() |
|
140 | { |