system-praktyk-api/test/InternshipSystem.Core.Tests/InternshipSystem.Test.cs
maxchil 3a2b9b64d5 KEK (#54)
KEK

Co-authored-by: MaxchilKH <m.w.bohdanowicz@gmail.com>
2020-10-02 21:27:58 +02:00

18 lines
383 B
C#

using InternshipSystem.Core.Entity.Internship;
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();
}
}