SkillAgentSearch skills...

Rocks

A mocking library based on the Compiler APIs (Roslyn + Mocks)

Install / Use

/learn @JasonBock/Rocks
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

Rocks

NuGet

Bugs

Issues

Rocks logo

A mocking library based on the Compiler APIs (Roslyn + Mocks).

Getting Started

Reference the Rocks NuGet package - that's it.

Prerequisites

The Rocks package targets .NET Standard 2.0 for host flexibility. That said, Rocks (as of 10.0.0) will generate code that requires .NET 10.

Usage

To make a mock, you take an interface or an unsealed class that has virtual members:

public interface IAmSimple
{
  void TargetAction();
}

and you use Rocks to create a mock with expectations, along with verifying its usage:

[assembly: Rock(typeof(IAmSimple), BuildType.Create)]

var expectations = new IAmSimpleCreateExpectations();
expectations.Setups.TargetAction();

var mock = expectations.Instance();
mock.TargetAction();

expectations.Verify();

More details can be found on the Overview page.

Additional Documentation

Feedback

If you run into any issues, please add them here.

Related Skills

View on GitHub
GitHub Stars373
CategoryDevelopment
Updated56m ago
Forks25

Languages

C#

Security Score

100/100

Audited on Apr 7, 2026

No findings