File: doc.go

package info (click to toggle)
singularity-container 4.1.5%2Bds4-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 43,876 kB
  • sloc: asm: 14,840; sh: 3,190; ansic: 1,751; awk: 414; makefile: 413; python: 99
file content (20 lines) | stat: -rw-r--r-- 794 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (c) 2019, Sylabs Inc. All rights reserved.
// This software is licensed under a 3-clause BSD license. Please consult the
// LICENSE.md file distributed with the sources of this project regarding your
// rights to use or distribute this software.

package tool

/*
Package tool provides all related test helpers/tools which can be used by
unit/e2e/integration tests.

All helpers functions here should take as first argument *testing.T, if a function
doesn't require or use *testing.T, this function should go into another package
and not in test or tool package.

Any helper functions using another package should be placed here.

All helpers can potentially influence test execution by calling t.Fatalf,
t.Errorf, t.Skipf ... and/or log any actions useful for tests execution.
*/