public void GetAllQueuesTest()
        {
            TicketQueueCollection CreatedSet = new TicketQueueCollection();

            //Select everything in the database.
            TicketQueueCollection PreSelectionSet = HelpdeskService.GetAllQueues();

            //Add the new items into the database and keep of collection of them for deletion later...
            for (int x = 0; x < 10; x++)
            {
                TicketQueue temp = NewQueue();

                HelpdeskService.CreateQueue(temp);
                CreatedSet.Add(temp);
            }

            //Get teh values of everything in teh datbase now that we have done some insertions.
            TicketQueueCollection PostSelectionSet = HelpdeskService.GetAllQueues();

            //Check their counts to make sure everything went into the database correctly.
            Assert.IsTrue((PreSelectionSet.Count + 10) == PostSelectionSet.Count);
        }