1package org.testng.internal;
2
3public class Version {
4 public static final String VERSION = "6.9.47-SNAPSHOT";
5
6 public static void displayBanner() {
7 System.out.println("...\n... TestNG " + VERSION + " by Cédric Beust (cedric@beust.com)\n...\n");
8 }
9}
10