system-praktyk-api/test/InternshipSystem.Core.Tests/InternshipSystem.Test.cs
mborzyszkowski 7e181f6887 refactoring
Entity class InternshipEntity name changed to Internship
namespace Internship changed to InternshipSystem
2020-07-08 18:25:49 +02:00

18 lines
350 B
C#

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();
}
}