summaryrefslogtreecommitdiff
path: root/src/test/PlayingWithActiveReports.Test/Domain/AnswerTest.cs
blob: cb780893cf9fb0fa5001f0148e23a88c31d8a655 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using MbUnit.Framework;
using PlayingWithActiveReports.Core.Domain;

namespace PlayingWithActiveReports.Test {
	[TestFixture]
	public class AnswerTest {
		[Test]
		public void Should_Be_Equal( ) {
			Assert.AreEqual( new Answer( "23" ), new Answer( "23" ) );
		}
	}
}