1 package org.testng.internal;
2
3 public 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 Cdric Beust (cedric (a] beust.com)\n...\n");
8 }
9 }
10