public void TestDataQueryWriterV20(string file, string dataflowFile, string dsdFile)
        {
            var retrievalManager = this.GetSdmxObjectRetrievalManager(dataflowFile, dsdFile);
            using (var fileReadableDataLocation = new FileReadableDataLocation(file))
            {
                IList<IDataQuery> dataQuery = this.dataQueryParseManager.BuildDataQuery(fileReadableDataLocation, retrievalManager);
                Assert.IsNotEmpty(dataQuery);
                IDataQueryFactory factory = new DataQueryFactory();
                IDataQueryBuilder<XDocument> builder = factory.GetDataQueryBuilder(new QueryMessageV2Format());

                foreach (var query in dataQuery)
                {
                  XDocument xQuery = builder.BuildDataQuery(query);
                  Assert.IsNotNull(xQuery);
                }
                

            }
        }