args<T> method
T
args<T>()
Implementation
T args<T>() {
if (_shouldUseMock) {
return GetTestMode.arguments as T;
}
return rootController.rootDelegate.arguments<T>();
}
T args<T>() {
if (_shouldUseMock) {
return GetTestMode.arguments as T;
}
return rootController.rootDelegate.arguments<T>();
}