Invoke the test operation on a resource. # Arguments `resource` - The resource to invoke the operation on. `input` - The input to the operation. # Errors This function will return an error if the underlying resource fails.
(&self, resource: &DscResource, input: &str)
| 111 | /// This function will return an error if the underlying resource fails. |
| 112 | /// |
| 113 | pub fn resource_test(&self, resource: &DscResource, input: &str) -> Result<TestResult, DscError> { |
| 114 | resource.test(input) |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | impl Default for DscManager { |