public void When_Constructing_An_EventsByNameSpaceQuery_TypeIsNotEmpty()
        {
            //arrange
            nameSpace = string.Empty;

            //act
            GetLatestEventsBySubScribedEventTypeQuery query = new GetLatestEventsBySubScribedEventTypeQuery(nameSpace, rowIdentifier);

            //assert
            //see exception
        }
        public void When_Constructing_An_EventsByNameSpaceQuery_RowIdentifierIsGreaterThanZero()
        {
            //arrange
            rowIdentifier = 0;

            //act
            GetLatestEventsBySubScribedEventTypeQuery query = new GetLatestEventsBySubScribedEventTypeQuery(nameSpace, rowIdentifier);

            //assert
            //see exception
        }