Skip to content
Novus Examples

Explore the test library

Find files, editable templates and browser test targets by what you need to make or test. Explore complete business kits for connected records, templates and expected results.

5297 results

Page 94 of 221; 24 results per page.

Show the canonical directory
Preview of go.mod Module Manifest (as .txt)
txt
581 B
Actual file preview for go.mod Module Manifest (as .txt)

go.mod Module Manifest (as .txt)

A Go module manifest with separate direct and // indirect require blocks for the fictional tree. Served with a .txt extension because go.mod has no registered media type; the content is verbatim go.mod syntax. Every package, version, hash and licence is fictional: the tree describes nothing real.

File
TXT · Lockfiles
Use case
Config parsingConversion testing· Conversion set
Preview of go.sum Checksum Lines (as .txt)
txt
1.4 KB
Actual file preview for go.sum Checksum Lines (as .txt)

go.sum Checksum Lines (as .txt)

go.sum content: two h1: lines per fictional module (one for the module zip and one for its go.mod), which is the pairing a verifier must require. Served as .txt because go.sum has no registered media type. Every package, version, hash and licence is fictional: the tree describes nothing real.

File
TXT · Lockfiles
Use case
Config parsingConversion testing+1· Conversion set
Preview of GPC: Global Privacy Control SAMPLE
json
39 B
Actual file preview for GPC: Global Privacy Control SAMPLE

GPC: Global Privacy Control SAMPLE

GPC: Global Privacy Control SAMPLE for crawler and .well-known tooling.

File
JSON · Well Known
Use case
Web assets
Preview of GPX 1.0: Legacy Schema
gpx
1.4 KB
Actual file preview for GPX 1.0: Legacy Schema

GPX 1.0: Legacy Schema

The same eight trackpoints written to the GPX 1.0 schema. The two versions differ in namespace and in where document metadata lives (1.1 wraps it in a `metadata` element, 1.0 puts name, desc and time directly under `gpx`), which is exactly what a namespace-hardcoding reader gets wrong.

File
GPX · Gpx · UTF-8
Use case
GeospatialConversion testing+1· Conversion set
Preview of GPX 1.1: Current Schema
gpx
1.4 KB
Actual file preview for GPX 1.1: Current Schema

GPX 1.1: Current Schema

The same eight trackpoints written to the GPX 1.1 schema. The two versions differ in namespace and in where document metadata lives (1.1 wraps it in a `metadata` element, 1.0 puts name, desc and time directly under `gpx`), which is exactly what a namespace-hardcoding reader gets wrong.

File
GPX · Gpx · UTF-8
Use case
GeospatialConversion testing+1· Conversion set
Preview of GPX Track
gpx
495 B
Actual file preview for GPX Track

GPX Track

A GPX track with timestamped trackpoints and elevation, for testing route parsers and mapping tools.

File
GPX · Geospatial · UTF-8
Use case
Geospatial
Preview of GPX: Garmin TrackPointExtension (heart rate, cadence, temperature)
gpx
3.9 KB
Actual file preview for GPX: Garmin TrackPointExtension (heart rate, cadence, temperature)

GPX: Garmin TrackPointExtension (heart rate, cadence, temperature)

Eight trackpoints each carrying a Garmin TrackPointExtension with heart rate, cadence and air temperature. The GPX schema deliberately leaves `extensions` open, so this is the fixture for checking that a reader surfaces vendor data instead of discarding it on export.

File
GPX · Gpx · UTF-8
Use case
GeospatialMetadata testing+1· Conversion set
Preview of GPX: Out-of-Order and Duplicated Timestamps
gpx
1.3 KB
Actual file preview for GPX: Out-of-Order and Duplicated Timestamps

GPX: Out-of-Order and Duplicated Timestamps

Seven trackpoints whose timestamps go forwards, backwards, and then repeat: the pattern a receiver produces after a clock correction or a buffered replay. Naive speed calculations divide by a negative or zero time delta and emit impossible values.

File
GPX · Gpx · UTF-8
Use case
GeospatialError handling+1· Conversion set
Preview of GPX: Route (rte) Rather Than a Track
gpx
859 B
Actual file preview for GPX: Route (rte) Rather Than a Track

GPX: Route (rte) Rather Than a Track

A `rte` element: an ordered list of waypoints describing a planned route, with no timestamps because it has not been travelled yet. Many importers only look for `trk` and report this perfectly valid file as empty.

File
GPX · Gpx · UTF-8
Use case
GeospatialConversion testing+1· Conversion set
Preview of GPX: Single-Segment Track (24 points)
gpx
3.4 KB
Actual file preview for GPX: Single-Segment Track (24 points)

GPX: Single-Segment Track (24 points)

The baseline GPS trace for this category: 24 timestamped, elevated trackpoints in a single segment, walking the Coast Road of the invented territory. Every other GPX fixture here is this file with one thing changed.

File
GPX · Gpx · UTF-8
Use case
GeospatialTime-series data+1· Conversion set
Preview of GPX: Standalone Waypoints Only
gpx
1016 B
Actual file preview for GPX: Standalone Waypoints Only

GPX: Standalone Waypoints Only

Five `wpt` elements for the towns of the territory, with names, symbols and descriptions but no track or route. It is the GPX equivalent of a point layer, and the third of the three top-level GPX content types.

File
GPX · Gpx · UTF-8
Use case
GeospatialConversion testing+1· Conversion set
Preview of GPX: Timestamps With a UTC Offset Instead of Z
gpx
1.4 KB
Actual file preview for GPX: Timestamps With a UTC Offset Instead of Z

GPX: Timestamps With a UTC Offset Instead of Z

The same eight points timestamped with a +01:00 offset rather than the usual Z. The digits are identical to the reference track, so a parser that strips the offset and assumes UTC produces times that are wrong by exactly one hour: a silent error that only shows up when two traces are merged.

File
GPX · Gpx · UTF-8
Use case
GeospatialTime-series data+1· Conversion set
Preview of GPX: Track Split Into Two Segments by a Pause
gpx
3.4 KB
Actual file preview for GPX: Track Split Into Two Segments by a Pause

GPX: Track Split Into Two Segments by a Pause

The same 24 points split into two `trkseg` elements with a ten-minute gap between them: what a receiver writes after a stop or a signal loss. Tools that concatenate segments without noticing the boundary report a moving average dragged down by a pause that never happened on the move.

File
GPX · Gpx · UTF-8
Use case
GeospatialTime-series data+1· Conversion set
Preview of GPX: Track With a Single Trackpoint
gpx
523 B
Actual file preview for GPX: Track With a Single Trackpoint

GPX: Track With a Single Trackpoint

A track containing exactly one point, which is what a receiver writes when a recording is stopped immediately. Distance, speed and bearing all need a pair of points, so this is the fixture that finds off-by-one loops and empty-slice crashes.

File
GPX · Gpx · UTF-8
Use case
GeospatialError handling+1· Conversion set
Preview of GPX: Track Without Elevation
gpx
1.2 KB
Actual file preview for GPX: Track Without Elevation

GPX: Track Without Elevation

Eight trackpoints with timestamps but no `ele` element, the shape a receiver writes on a 2D fix. Elevation-profile code that assumes the element is present either crashes or charts a flat line at zero, which looks like real data.

File
GPX · Gpx · UTF-8
Use case
GeospatialError handling+1· Conversion set
Preview of GPX: Track Without Timestamps
gpx
1.1 KB
Actual file preview for GPX: Track Without Timestamps

GPX: Track Without Timestamps

The same eight points with elevation but no `time` element: what you get when a track is drawn in a planning tool rather than recorded. Speed and pace calculations must refuse to produce a number here instead of dividing by a zero duration.

File
GPX · Gpx · UTF-8
Use case
GeospatialError handling+1· Conversion set
Preview of Grade Tracker Template (XLSX)
xlsx
5.4 KB
Actual file preview for Grade Tracker Template (XLSX)

Grade Tracker Template (XLSX)

A gradebook that computes a weighted average from homework, midterm, and final scores, assigns a letter grade with nested IF, and averages the class: good for formula testing.

File
XLSX · Grade Tracker
Preview of Gradle Build Script (Groovy DSL)
gradle
1.2 KB
Actual file preview for Gradle Build Script (Groovy DSL)

Gradle Build Script (Groovy DSL)

A Gradle Groovy DSL build script with a plugins block, a Java toolchain, five dependency configurations, task configuration via named() and a registered task. Every coordinate and repository is fictional, so nothing resolves.

File
GRADLE · Build
Preview of Gradle dependencies Report Output
txt
801 B
Actual file preview for Gradle dependencies Report Output

Gradle dependencies Report Output

Gradle's dependency report, which marks repeat subtrees with `(*)` and explains the marker in a footer, so a parser has to resolve those references back to their first occurrence. Every package, version, hash and licence is fictional: the tree describes nothing real.

File
TXT · Graphs
Use case
Log parsingGraph data+1· Conversion set
Preview of Gradle Dependency Lockfile
lock
1 KB
Actual file preview for Gradle Dependency Lockfile

Gradle Dependency Lockfile

A Gradle dependency lockfile: one `group:artifact:version=configurations` line per fictional module plus the `empty=` line that records configurations resolving to nothing. Every package, version, hash and licence is fictional: the tree describes nothing real.

File
LOCK · Lockfiles
Use case
Config parsingConversion testing· Conversion set
Preview of Gradle Settings Script with Version Catalog
gradle
980 B
Actual file preview for Gradle Settings Script with Version Catalog

Gradle Settings Script with Version Catalog

A Gradle settings script (the file that actually defines a multi-project build) with pluginManagement, a repositories mode, a version catalog declaring libraries, a bundle and a plugin, and one project remapped to a custom directory.

File
GRADLE · Build
Preview of gradle.properties with Escapes and Continuations
properties
943 B
Actual file preview for gradle.properties with Escapes and Continuations

gradle.properties with Escapes and Continuations

A gradle.properties exercising the .properties grammar rather than Gradle: a \uXXXX escape, a backslash line continuation, all three key/value separator forms, and a key containing escaped separator characters.

File
PROPERTIES · Build