public void Delete()
		{
			// Arrange
			SiteController controller = new SiteController();

			// Act
			controller.Delete(5);

			// Assert
		}
		public void Put()
		{
			// Arrange
			SiteController controller = new SiteController();

			// Act
			controller.Put(5, "value");

			// Assert
		}
		public void GetById()
		{
			// Arrange
			SiteController controller = new SiteController();

			// Act
			string result = controller.Get(5);

			// Assert
			Assert.AreEqual("value", result);
		}
		public void Post()
		{
			// Arrange
			SiteController controller = new SiteController();

			// Act
			controller.Post(new OfficeDevPnP.Core.Entities.SiteEntity
			{ Url="hakon", Description="hakon", Title="hakons" }
			);

			// Assert
		}
		public void Get()
		{
			// Arrange
			SiteController controller = new SiteController();

			// Act
			IEnumerable<string> result = controller.Get();

			// Assert
			Assert.IsNotNull(result);
			Assert.AreEqual(2, result.Count());
			Assert.AreEqual("value1", result.ElementAt(0));
			Assert.AreEqual("value2", result.ElementAt(1));
		}