My favorites
▼
|
Sign in
sibirjak
Russischer Bär source code repository
Project Home
Downloads
Wiki
Issues
Source
Checkout
Browse
Changes
Source path:
svn
/
trunk
/
asperform
/
com
/
sibirjak
/
asperform
/
collectiontests
/
ArrayTests.as
r27
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
package com.sibirjak.asperform.collectiontests {
import com.sibirjak.asperform.EmptyTestCase;
import com.sibirjak.asperform.TestData;
import com.sibirjak.asperform.TestSuite;
import com.sibirjak.asperform.collectiontests.flash.ArrayTest;
/**
* @author Jens Struwe 23.04.2010
*/
public class ArrayTests extends TestSuite {
public function ArrayTests() {
setTestOrder(["addLast", "removeLast", "addFirst", "removeFirst", "has", "remove"]);
selectTestMethods(["addFirst", "removeFirst", "addLast", "removeLast", "has", "remove"]);
setTestProperty("testData", new TestData());
setTestProperty("numItems", 5000);
addTestCase("5000 Items", new EmptyTestCase());
addTestCase("Array", new ArrayTest());
setTestProperty("numItems", 10000);
addTestCase("10000 Items", new EmptyTestCase());
addTestCase("Array", new ArrayTest());
setTestProperty("numItems", 50000);
addTestCase("50000 Items", new EmptyTestCase());
addTestCase("Array", new ArrayTest());
}
}
}
Show details
Hide details
Change log
r6
by jens.struwe on Apr 28, 2010
Diff
[DEV] Linked list example, Array and Dictionary tests added.
Go to:
...sibirjak/asperform/TestRunner.as
...lectiontests/ArraySortedTests.as
...rm/collectiontests/ArrayTests.as
...ectiontests/CollectionTests.mxml
...llectiontests/DictionaryTests.as
...perform/collectiontests/examples
...s/examples/LinkedListRawTests.as
...lectiontests/examples/linkedlist
...ples/linkedlist/LinkedListRaw.as
.../linkedlist/LinkedListRawTest.as
Project members,
sign in
to write a code review
Older revisions
All revisions of this file
File info
Size: 1012 bytes, 37 lines
View raw file
Powered by
Google Project Hosting