using System; using Machine.Specifications; // ReSharper disable InconsistentNaming namespace InternshipSystem.Core.Tests { [Subject(typeof(Internship))] class When_doing_something { Establish context = () => { }; Because of = () => { }; It should_shit_a_brick = () => false.ShouldBeTrue(); } }