Entity class InternshipEntity name changed to Internship namespace Internship changed to InternshipSystem
18 lines
350 B
C#
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();
|
|
}
|
|
}
|