Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/anim/completeTest/fileTypeTests.py
blob: ceab50ca4fe0e968810654c29d96270844680a11 (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
52
53
54
55
56
57
#! /usr/bin/env python
#import sys

#= .image() Animation Test ========
#- set up -------------------------

def imgSetup():
    print "imgSetup"

def imgTest():
    print "imgTest"

#= .sprite() Animation Test =======
#- set up -------------------------

def spriteSetup():
    print "spriteSetup"

def spriteTest():
    print "spriteTest"


#= Scalability Test ===============
#- set up -------------------------

def scaleSetup():
    print "scaleSetup"

def scaleTest():
    print "scaleTest"


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 "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')
list=[]
keyIn="temp val"
val=0
while keyIn is not None:
    keyIn=raw_input(">")
    list[val]=int(keyIn)
    val=val+1

print list+" and switching now..."
#
#for i in list:
#        call what's in list[i] somehow
#    print i
#    if i == keyInt 
#    list[int(i)]
#    switch.get( i , sys.exit("Goodbye!") )
#    print 'looped through'