Source: core/get_testar_test_results.js

/*
 * This file is part of PKM (Persistent Knowledge Monitor).
 * Copyright (c) 2020 Capgemini Group, Commissariat à l'énergie atomique et aux énergies alternatives,
 *                    OW2, Sysgo AG, Technikon, Tree Technology, Universitat Politècnica de València.
 * 
 * PKM is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License version 3 as published by
 * the Free Software Foundation.
 * 
 * PKM is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 * 
 * You should have received a copy of the GNU Affero General Public License
 * along with PKM.  If not, see <https://www.gnu.org/licenses/>.
 */

/**
 * Get all TESTAR Test Results JSON Documents or one TESTAR Test Results JSON Document using unique artefactId
 * 
 * @memberof PKM
 * @instance
 * @param {string} dbName - database name
 * @param {string} [artefactId] - unique document identifier
 * @param {Object} [options] - options
 * 
 * @return {Promise.<Array<Object> >} a promise
 */
function get_testar_test_results(dbName, query = {}, options = {})
{	
	return this.get_documents(dbName, 'TESTARTestResults', query, options);
}

exports.get_testar_test_results = get_testar_test_results;