Skip to content
Snippets Groups Projects
Commit 28461563 authored by Tifenn Guillas's avatar Tifenn Guillas
Browse files

Merge branch 'tests-integration' into 'develop'

Tests integration

See merge request !71
parents 9630183b a4bbd81d
No related branches found
No related tags found
2 merge requests!813.1,!71Tests integration
Pipeline #1676 passed
export * from './attribute-list';
export * from './criteria-list';
export * from './criteria-family-list';
export * from './dataset-list';
export * from './dataset';
export * from './dataset-family-list';
export * from './project-list';
export * from './project';
export * from './output-category';
export * from './output-category-list';
export * from './output-family';
export * from './output-family-list';
import { Category } from 'src/app/metamodel/model';
export const CATEGORY_LIST: Category[] = [
{
id: 1,
label: 'Another output category',
display: 20,
id_output_family: 1
},
{
id: 3,
label: 'The last output category',
display: 10,
id_output_family: 2
},
{
id: 2,
label: 'Default output category',
display: 10,
id_output_family: 1
}
];
import { Category } from 'src/app/metamodel/model';
export const CATEGORY: Category = {
id: 1,
label: 'Default output category',
display: 10,
id_output_family: 1
};
import { Family } from 'src/app/metamodel/model';
export const OUTPUT_FAMILY_LIST: Family[] = [
{
id: 2,
type: 'output',
label: 'Another output family',
display: 10
},
{
id: 1,
type: 'output',
label: 'Default output family',
display: 10
}
];
import { Family } from 'src/app/metamodel/model';
export const OUTPUT_FAMILY: Family = {
id: 2,
type: 'output',
label: 'Default output family',
display: 10
};
import { Project } from 'src/app/metamodel/model';
export const PROJECT_LIST: Project[] = [
{
name: 'project_1',
label: 'Project 1',
description: 'Description of project 1',
link: '',
manager: '',
id_database: 1
},
{
name: 'project_2',
label: 'Project 2',
description: 'Description of project 2',
link: '',
manager: '',
id_database: 1
}
];
import { Project } from 'src/app/metamodel/model';
export const PROJECT: Project = {
name: 'project_1',
label: 'Project 1',
description: 'Description of project 1',
link: '',
manager: '',
id_database: 1
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment