blob: 5c6fa89620d7016ab05a6d3514d44e416e4c10fc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
set -e
# Optional: Import test library
source dev-container-features-test-lib
# Definition specific tests
check "version" java --version
# Report result
reportResults
|