All files / rdf/tests/vocabularies i18n.ts

44.44% Statements 4/9
0% Branches 0/20
0% Functions 0/5
50% Lines 4/8

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27      9x   9x                     9x   9x                
import { NamedNode } from '@rdfjs/types';
 
/** Namespace URI of the I18N vocabulary. */
export const _I18N = 'workspace:src/rdf/tests/vocabularies/i18n.ttl#';
 
export const I18N = {
	/** This class has language tags in all languages. */
	'Class1': 'workspace:src/rdf/tests/vocabularies/i18n.ttl#Class1',
	/** This class only has a label with a German language tag. */
	'Class2': 'workspace:src/rdf/tests/vocabularies/i18n.ttl#Class2',
	'Class3': 'workspace:src/rdf/tests/vocabularies/i18n.ttl#Class3',
	/** This class does not have any language tag on the label, but a tagged comment. */
	'Class4': 'workspace:src/rdf/tests/vocabularies/i18n.ttl#Class4',
}
 
/** Namespace URI of the i18n vocabulary. */
export const _i18n = { termType: 'NamedNode', value: 'workspace:src/rdf/tests/vocabularies/i18n.ttl#', equals: (other: any) => other && (other.termType === 'NamedNode' || other.type === 'NamedNode') && other.value === 'workspace:src/rdf/tests/vocabularies/i18n.ttl#' } as NamedNode;
 
export const i18n = {
	/** This class has language tags in all languages. */
	'Class1': { termType: 'NamedNode', value: 'workspace:src/rdf/tests/vocabularies/i18n.ttl#Class1', equals: (other: any) => other && (other.termType === 'NamedNode' || other.type === 'NamedNode') && other.value === 'workspace:src/rdf/tests/vocabularies/i18n.ttl#Class1' } as NamedNode,
	/** This class only has a label with a German language tag. */
	'Class2': { termType: 'NamedNode', value: 'workspace:src/rdf/tests/vocabularies/i18n.ttl#Class2', equals: (other: any) => other && (other.termType === 'NamedNode' || other.type === 'NamedNode') && other.value === 'workspace:src/rdf/tests/vocabularies/i18n.ttl#Class2' } as NamedNode,
	'Class3': { termType: 'NamedNode', value: 'workspace:src/rdf/tests/vocabularies/i18n.ttl#Class3', equals: (other: any) => other && (other.termType === 'NamedNode' || other.type === 'NamedNode') && other.value === 'workspace:src/rdf/tests/vocabularies/i18n.ttl#Class3' } as NamedNode,
	/** This class does not have any language tag on the label, but a tagged comment. */
	'Class4': { termType: 'NamedNode', value: 'workspace:src/rdf/tests/vocabularies/i18n.ttl#Class4', equals: (other: any) => other && (other.termType === 'NamedNode' || other.type === 'NamedNode') && other.value === 'workspace:src/rdf/tests/vocabularies/i18n.ttl#Class4' } as NamedNode,
}