This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
Commit ed65b1b5 authored by Daniel Rainer's avatar Daniel Rainer
Browse files

Delete unused test data

parent 4d688634
Branches
Tags
2 merge requests!17Initial Merge to Prepare Release 1.0.0,!3Component refactoring
import { Exercise } from 'app/shared/model/exercise.model';
export const MOCK_RESULTS: Exercise[] = [
{
title: 'Result 1',
license: 'MIT',
description: 'Search result one is a mocked search result. This description should fill some space to test the formatting.',
programmingLanguages: ['Java'],
languages: ['de'],
creators: [
{
name: 'Michael Breu',
email: 'dont@spam.com',
affiliation: 'UIBK',
},
],
imageURL: 'https://sharing-codeability.uibk.ac.at/static/CodeAbility%20Austria-Dateien/Logo_codeAbility_transparent.png',
rating: 1,
lastUpdate: '2021-01-30',
},
{
title: 'Result 2',
license: 'GPLv2',
description: 'The description of search result two is different from the description of result one. It conveys little information.',
programmingLanguages: ['C', 'Python'],
languages: ['en'],
creators: [
{
name: 'Michael Breu',
email: 'dont@spam.com',
affiliation: 'UIBK',
},
{
name: 'John Doe',
email: 'john@doe.org',
affiliation: '',
},
{
name: 'Max Mustermann',
email: '',
affiliation: '',
},
],
imageURL: 'https://sharing-codeability.uibk.ac.at/static/CodeAbility%20Austria-Dateien/Partner_UIBK.png',
rating: 3,
lastUpdate: '2020-12-15',
},
{
title: 'Mock result',
license: 'CC-BY-NC',
description: 'This result is concerned with mocking the style of search results',
programmingLanguages: [],
languages: ['de', 'en'],
creators: [],
imageURL: 'https://sharing-codeability.uibk.ac.at/static/CodeAbility%20Austria-Dateien/Partner_TU_Wien.png',
rating: 5,
lastUpdate: '',
},
{
title: 'This title is quite long, but it should still be displayed properly. Have another sentence with some words.',
license: 'BSD 2-clause',
description:
"The author of this result's metadata likes to use a lot of words. Therefore, the description contains some sentences. This course is about demonstrating that some input might be really long. How should we handle this? Limit the number of characters displayed? Make the description expandable in the detail view?",
programmingLanguages: [],
languages: [],
creators: [],
imageURL: 'https://sharing-codeability.uibk.ac.at/static/CodeAbility%20Austria-Dateien/Partner_TU_Graz2.png',
rating: 4,
lastUpdate: '',
},
{
title: 'Mock result',
license: 'custom',
description: 'This result is concerned with mocking the style of search results',
programmingLanguages: ['Java', 'C', 'Python', 'Haskell', 'Typescript', 'Rust', 'Lisp'],
languages: [],
creators: [],
imageURL: 'https://sharing-codeability.uibk.ac.at/static/CodeAbility%20Austria-Dateien/Partner_JKU2.png',
rating: 2,
lastUpdate: '2021-01-25',
},
];
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment