1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-13 17:49:10 +00:00
Files
bin
ai
regression
completeness.sh
regression.cfg
regression.nut
regression.sav
regression.txt
regression_info.nut
require.nut
run.sh
compat_0.7.nut
compat_1.0.nut
data
gm
scripts
docs
media
os
projects
src
.gitignore
.hgignore
COPYING
Doxyfile
Makefile.bundle.in
Makefile.in
Makefile.lang.in
Makefile.msvc
Makefile.src.in
changelog.txt
config.lib
configure
findversion.sh
known-bugs.txt
readme.txt
source.list
svnup.sh
OpenTTD/bin/ai/regression/regression_info.nut
2009-12-23 23:09:47 +00:00

16 lines
573 B
Plaintext

/* $Id$ */
class Regression extends AIInfo {
function GetAuthor() { return "OpenTTD NoAI Developers Team"; }
function GetName() { return "Regression"; }
function GetShortName() { return "REGR"; }
function GetDescription() { return "This runs regression-tests on all commands. On the same map the result should always be the same."; }
function GetVersion() { return 1; }
function GetAPIVersion() { return "1.0"; }
function GetDate() { return "2007-03-18"; }
function CreateInstance() { return "Regression"; }
}
RegisterAI(Regression());