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