Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/anim/completeTest/fileTypeTests.py
blob: f770b454dca37a5045b223348061a28b81a41aa3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#! /usr/bin/env python
#import sys


print "\n\nWelcome to the master File Type Tester Interface"
print "Authors: Scott 'JT' Mengel and Dave Silverman"
print "\nPlease select the test(s) you want to run in the order you want to run them."
print "Enter 'Exit' into the prompt to close the program. (NOTE: not working yet)\n"
print "0. Run all tests"
print "1. Simple File Type Variety Test, as images (NOTE: not working yet)"
print "2. Simple File Type variety Test, as sprites (NOTE: not working yet)"
print "3. Selected Scalability Test (NOTE: not working yet)"

file=open('./testresult.csv','a')
i=int(1)
keyIn="temp val"


#= .image() Animation Test ========
#- test ---------------------------
def imgTest():
    print "imgTest"


#= .sprite() Animation Test =======
#- test ---------------------------
def spriteTest():
    print "spriteTest"


#= Scalability Test ===============
#- test ---------------------------
def scaleTest():
    print "scaleTest"


#= Super (every) Test =============
#- test ---------------------------
def superTest():
    print "superTest"

list=[superTest,imgTest, spriteTest, scaleTest]

while True:
	keyIn=raw_input(">")

	try:
		temp = int(keyIn)
		list[temp]()
	except:
		break