system-praktyk-api/test/InternshipSystem.Core.Tests/InternshipSystem.Test.cs
2020-10-02 21:11:01 +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();
}
}