C# Class RubberduckTests.Mocks.MockProjectBuilder

Builds a mock VBProject.
Show file Open project: retailcoder/Rubberduck Class Usage Examples

Public Methods

Method Description
AddComponent ( Mock component ) : MockProjectBuilder

Adds a new mock component to the project. Use the AddComponent(string,vbext_ComponentType,string) overload to add module components. Use this overload to add user forms created with a RubberduckTests.Mocks.MockUserFormBuilder instance.

AddComponent ( string name, vbext_ComponentType type, string content ) : MockProjectBuilder

Adds a new component to the project.

AddReference ( string name, string filePath, bool isBuiltIn = false ) : MockProjectBuilder

Adds a mock reference to the project.

Build ( ) : Mock

Gets the mock VBProject instance.

MockProjectBuilder ( string name, vbext_ProjectProtection protection, Func getVbe, MockVbeBuilder mockVbeBuilder ) : System
MockUserFormBuilder ( string name, string content ) : MockUserFormBuilder

Creates a RubberduckTests.Mocks.MockUserFormBuilder to build a new form component.

MockVbeBuilder ( ) : MockVbeBuilder

Builds the project, adds it to the VBE, and returns a MockVbeBuilder to continue adding projects to the VBE.

Private Methods

Method Description
CreateCodeModuleMock ( string content ) : Mock
CreateCodeModuleMock ( string name, string content ) : Mock
CreateCodePaneMock ( string name ) : Mock
CreateComponentMock ( string name, vbext_ComponentType type, string content ) : Mock
CreateComponentsMock ( ) : Mock
CreateProjectMock ( string name, vbext_ProjectProtection protection ) : Mock
CreateReferenceMock ( string name, string filePath, bool isBuiltIn = true ) : Mock
CreateReferencesMock ( ) : Mock

Method Details

AddComponent() public method

Adds a new mock component to the project. Use the AddComponent(string,vbext_ComponentType,string) overload to add module components. Use this overload to add user forms created with a RubberduckTests.Mocks.MockUserFormBuilder instance.
public AddComponent ( Mock component ) : MockProjectBuilder
component Mock The component to add.
return MockProjectBuilder

AddComponent() public method

Adds a new component to the project.
public AddComponent ( string name, vbext_ComponentType type, string content ) : MockProjectBuilder
name string The name of the new component.
type vbext_ComponentType The type of component to create.
content string The VBA code associated to the component.
return MockProjectBuilder

AddReference() public method

Adds a mock reference to the project.
public AddReference ( string name, string filePath, bool isBuiltIn = false ) : MockProjectBuilder
name string The name of the referenced library.
filePath string The path to the referenced library.
isBuiltIn bool Indicates whether the reference is a built-in reference.
return MockProjectBuilder

Build() public method

Gets the mock VBProject instance.
public Build ( ) : Mock
return Mock

MockProjectBuilder() public method

public MockProjectBuilder ( string name, vbext_ProjectProtection protection, Func getVbe, MockVbeBuilder mockVbeBuilder ) : System
name string
protection vbext_ProjectProtection
getVbe Func
mockVbeBuilder MockVbeBuilder
return System

MockUserFormBuilder() public method

Creates a RubberduckTests.Mocks.MockUserFormBuilder to build a new form component.
public MockUserFormBuilder ( string name, string content ) : MockUserFormBuilder
name string The name of the component.
content string The VBA code associated to the component.
return MockUserFormBuilder

MockVbeBuilder() public method

Builds the project, adds it to the VBE, and returns a MockVbeBuilder to continue adding projects to the VBE.
public MockVbeBuilder ( ) : MockVbeBuilder
return MockVbeBuilder