copilot-agentic-workshop tests.instructions.md

copilot-agentic-workshop tests.instructions.md is an instructions file for GitHub Copilot from nunosoarescsw/copilot-agentic-workshop. It costs 627 tokens per session, scanned A, original, MIT.

Testing instructions for the TaskManager project using xUnit, FluentAssertions, and NSubstitute. They require the Arrange, Act, Assert structure: set up the test, run the code, then check the result.

In plain words
What is it for?
Use them when writing or reviewing unit tests, integration tests, or test infrastructure for TaskManager, including test names and dependency substitutes.
Why use it?
They make tests consistent and readable while avoiding unsupported testing libraries and improvised test doubles.

Instructions file for GitHub Copilot

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/nunosoarescsw/copilot-agentic-workshop/tests
Clone the repo
git clone --depth 1 https://github.com/nunosoarescsw/copilot-agentic-workshop

Made for: GitHub Copilot.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for copilot-agentic-workshop tests.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/nunosoarescsw/copilot-agentic-workshop/tests.svg)](https://agentmods.dev/instructions/nunosoarescsw/copilot-agentic-workshop/tests)
Your own site
<a href="https://agentmods.dev/instructions/nunosoarescsw/copilot-agentic-workshop/tests"><img src="https://agentmods.dev/badge/instructions/nunosoarescsw/copilot-agentic-workshop/tests.svg" alt="Measured on agentmods" height="20"></a>
Per session 627 This file is loaded in full into every session.
When invoked 627 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00627 $0.00627
Opus 5 $0.00313 $0.00313
Sonnet 5 $0.00125 $0.00125
Haiku 4.5 $0.00063 $0.00063

Measured 4d ago against content hash bed59410abbd, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

copilot-agentic-workshop tests.instructions.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.github/instructions/tests.instructions.md · 105 lines

How it starts

The opening of the file, as written. The whole thing — 105 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Test Conventions

Stack

  • Framework: xUnit
  • Assertions: FluentAssertions (result.Should().Be(...))
  • Mocking: NSubstitute (Substitute.For<T>())

Never use Moq, MSTest, or manual fake classes unless explicitly requested.

Test Class Structure

public sealed class ClassNameTests
{
    // Dependencies substituted via NSubstitute
    private readonly IDependency _dep = Substitute.For<IDependency>();

    // System under test
    private readonly ClassName _sut;

    public ClassNameTests() => _sut = new ClassName(_dep);

    [Fact]
    public async Task MethodName_Scenario_ExpectedResult()
    {
        // Arrange
        _dep.SomeMethod(Arg.Any<string>()).Returns("value");

        // Act
        var result = await _sut.MethodName("input");

        // Assert
        result.Should().NotBeNull();
        result.Value.Should().Be("expected");
    }
}

Naming Convention

MethodName_Scenario_ExpectedResult

Examples:

  • CreateAsync_WithValidRequest_ReturnsCreatedTask
  • GetByIdAsync_WhenTaskDoesNotExist_ReturnsNull
  • Complete_WhenAlreadyDone_ThrowsInvalidOperationException

FluentAssertions Patterns

// Equality
result.Should().Be(expected);
result.Should().NotBe(unexpected);

// Nullability
result.Should().NotBeNull();
result.Should().BeNull();

// Collections
list.Should().HaveCount(3);
list.Should().ContainSingle(x => x.Id == id);
list.Should().BeEmpty();

// Exceptions
var act = async () => await _sut.Method();
await act.Should().ThrowAsync<InvalidOperationException>()
         .WithMessage("*partial match*");

// Strings
str.Should().StartWith("prefix");
str.Should().NotBeNullOrWhiteSpace();

// Dates
dt.Should().BeCloseTo(DateTimeOffset.UtcNow, TimeSpan.FromSeconds(1));

NSubstitute Patterns

// Return value
_repo.GetByIdAsync(id, Arg.Any<CancellationToken>()).Returns(task);

// Return argument
_repo.AddAsync(Arg.Any<TaskItem>(), Arg.Any<CancellationToken>())
     .Returns(x => x.Arg<TaskItem>());

// Verify call
await _repo.Received(1).DeleteAsync(id, Arg.Any<CancellationToken>());

Read the full file on GitHub · 105 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 105 lines · 627 tokens per session scan A bed59410abbd

Subscribe to this mod's changes

copilot-agentic-workshop tests.instructions.md is an instructions file published in the GitHub repository nunosoarescsw/copilot-agentic-workshop (1 stars, last pushed 2mo ago), licensed MIT. It adds 627 tokens to every session, about $0.0031 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.