Ejemplo n.º 1
0
		public void Constructor_CreationWithValidInput_CreationIsDoneWithoutErrors()
		{
			WikiAccount account = new WikiAccount();
			account.AccountName = "Test Account";
			Wikipage pageToTest = new Wikipage(account);

			Assert.IsNotNull(pageToTest);
			Assert.IsTrue(pageToTest.IsAssociatedWithAnAccount());
			Assert.AreEqual(pageToTest.GetAssociatedAccountName(), account.AccountName);
		}