Click or drag to resize
UnitTestExtensions.FakeExecution Method
Fakes the execution of a query

Namespace: CMS.Tests
Assembly: CMS.Tests (in CMS.Tests.dll) Version: 9.0.0
Syntax
C#
public static BeforeConditionalEvent<ExecuteQueryEventArgs<DataSet>> FakeExecution(
	this IDataQuery query,
	Action<ExecuteQueryEventArgs<DataSet>> execution,
	bool cancel = true
)

Parameters

query
Type: CMS.DataEngine.IDataQuery
Query to fake
execution
Type: System.Action<ExecuteQueryEventArgs<DataSet>>
Execution code
cancel (Optional)
Type: System.Boolean
True when query execution should be canceled

Return Value

Type: BeforeConditionalEvent<ExecuteQueryEventArgs<DataSet>>

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IDataQuery. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also