machine / machine.specifications

Machine.Specifications is a Context/Specification framework for .NET that removes language noise and simplifies tests.
MIT License
885 stars 178 forks source link

Missing docs on imports #403

Closed haf closed 4 years ago

haf commented 4 years ago

With code

using System;
using System.IO;
using Logary.Configuration;
using Machine.Specifications;
using NodaTime;

There are no docs on what namespaces to import; leads to errors like

TimeScope_Specs.cs(34,9): error CS0246: The type or namespace name 'It' could not be found (are you missing a using directive or an assembly reference?) [/Users/h/dev/haf/logary/src/Logary.CSharp.Tests/Logary.CSharp.Tests.csproj]

The quickstart is missing these import statements.

Also, there is no examples/ folder.