108 lines
3.1 KiB
TypeScript
108 lines
3.1 KiB
TypeScript
/**
|
|
* Paths to the screenshots of the tests.
|
|
*/
|
|
const screenShotPaths = {
|
|
angle: {
|
|
angleDisplayedCorrectly: 'angleDisplayedCorrectly.png',
|
|
},
|
|
bidirectional: {
|
|
bidirectionalDisplayedCorrectly: 'bidirectionalDisplayedCorrectly.png',
|
|
},
|
|
circle: {
|
|
circleDisplayedCorrectly: 'circleDisplayedCorrectly.png',
|
|
},
|
|
cobbangle: {
|
|
cobbangleDisplayedCorrectly: 'cobbangleDisplayedCorrectly.png',
|
|
},
|
|
ellipse: {
|
|
ellipseDisplayedCorrectly: 'ellipseDisplayedCorrectly.png',
|
|
},
|
|
length: {
|
|
lengthDisplayedCorrectly: 'lengthDisplayedCorrectly.png',
|
|
},
|
|
livewire: {
|
|
livewireDisplayedCorrectly: 'livewireDisplayedCorrectly.png',
|
|
},
|
|
mpr: {
|
|
mprDisplayedCorrectly: 'mprDisplayedCorrectly.png',
|
|
},
|
|
mpr2: {
|
|
mprDisplayedCorrectly: 'mprDisplayedCorrectly.png',
|
|
mprDisplayedCorrectlyZoomed: 'mprDisplayedCorrectlyZoomed.png',
|
|
},
|
|
threeDFourUp: {
|
|
threeDFourUpDisplayedCorrectly: 'threeDFourUpDisplayedCorrectly.png',
|
|
},
|
|
threeDMain: {
|
|
threeDMainDisplayedCorrectly: 'threeDMainDisplayedCorrectly.png',
|
|
},
|
|
threeDPrimary: {
|
|
threeDPrimaryDisplayedCorrectly: 'threeDPrimaryDisplayedCorrectly.png',
|
|
},
|
|
threeDOnly: {
|
|
threeDOnlyDisplayedCorrectly: 'threeDOnlyDisplayedCorrectly.png',
|
|
},
|
|
axialPrimary: {
|
|
axialPrimaryDisplayedCorrectly: 'axialPrimaryDisplayedCorrectly.png',
|
|
},
|
|
probe: {
|
|
probeDisplayedCorrectly: 'probeDisplayedCorrectly.png',
|
|
},
|
|
rectangle: {
|
|
rectangleDisplayedCorrectly: 'rectangleDisplayedCorrectly.png',
|
|
},
|
|
spline: {
|
|
splineDisplayedCorrectly: 'splineDisplayedCorrectly.png',
|
|
},
|
|
dicomTagBrowser: {
|
|
dicomTagBrowserDisplayedCorrectly: 'dicomTagBrowserDisplayedCorrectly.png',
|
|
},
|
|
rotateRight: {
|
|
rotateRightDisplayedCorrectly: 'rotateRightDisplayedCorrectly.png',
|
|
},
|
|
invert: {
|
|
invertDisplayedCorrectly: 'invertDisplayedCorrectly.png',
|
|
},
|
|
flipHorizontal: {
|
|
flipHorizontalDisplayedCorrectly: 'flipHorizontalDisplayedCorrectly.png',
|
|
},
|
|
reset: {
|
|
resetDisplayedCorrectly: 'resetDisplayedCorrectly.png',
|
|
},
|
|
srHydration: {
|
|
srPostHydration: 'srPostHydration.png',
|
|
srPreHydration: 'srPreHydration.png',
|
|
srJumpToMeasurement: 'srJumpToMeasurement.png',
|
|
},
|
|
segHydration: {
|
|
segPostHydration: 'segPostHydration.png',
|
|
segPreHydration: 'segPreHydration.png',
|
|
segJumpToSegment: 'segJumpToSegment.png',
|
|
},
|
|
segHydrationMPR: {
|
|
segPostHydration: 'segPostHydration.png',
|
|
segPostHydrationMPRAxialPrimary: 'segPostHydrationMPRAxialPrimary.png',
|
|
},
|
|
rtHydration: {
|
|
rtPostHydration: 'rtPostHydration.png',
|
|
rtPreHydration: 'rtPreHydration.png',
|
|
rtJumpToStructure: 'rtJumpToStructure.png',
|
|
},
|
|
rtHydration2: {
|
|
rtPostHydration: 'rtPostHydration.png',
|
|
rtPreHydration: 'rtPreHydration.png',
|
|
},
|
|
crosshairs: {
|
|
crosshairsRendered: 'crosshairsRendered.png',
|
|
crosshairsRotated: 'crosshairsRotated.png',
|
|
crosshairsSlabThickness: 'crosshairsSlabThickness.png',
|
|
crosshairsResetToolbar: 'crosshairsResetToolbar.png',
|
|
crosshairsNewDisplayset: 'crosshairsNewDisplayset.png',
|
|
},
|
|
tmtvRendering: {
|
|
tmtvDisplayedCorrectly: 'tmtvDisplayedCorrectly.png',
|
|
},
|
|
};
|
|
|
|
export { screenShotPaths };
|