AuD
Lecture 'Algorithmen und Datenstrukturen' (code examples)
aud.test.QueueTest Class Reference

Public Member Functions

void testQueue ()
 
void testQueueDL ()
 
void testInvalid_front ()
 
void testInvalid_dequeue ()
 
void testInvalid_frontDL ()
 
void testInvalid_dequeueDL ()
 

Static Public Member Functions

static void main (String args[])
 

Detailed Description

Definition at line 12 of file QueueTest.java.

Member Function Documentation

◆ main()

static void aud.test.QueueTest.main ( String  args[])
static

Definition at line 86 of file QueueTest.java.

86 {
87 org.junit.runner.JUnitCore.main("aud.test.QueueTest");
88 }

◆ testInvalid_dequeue()

void aud.test.QueueTest.testInvalid_dequeue ( )

Definition at line 71 of file QueueTest.java.

71 {
72 Queue<Integer> queue=new Queue<Integer>();
73 queue.dequeue();
74 }

References aud.Queue< T >.dequeue().

+ Here is the call graph for this function:

◆ testInvalid_dequeueDL()

void aud.test.QueueTest.testInvalid_dequeueDL ( )

Definition at line 81 of file QueueTest.java.

81 {
82 QueueDL<Integer> queue=new QueueDL<Integer>();
83 queue.dequeue();
84 }

References aud.QueueDL< T >.dequeue().

+ Here is the call graph for this function:

◆ testInvalid_front()

void aud.test.QueueTest.testInvalid_front ( )

Definition at line 66 of file QueueTest.java.

66 {
67 Queue<Integer> queue=new Queue<Integer>();
68 queue.front();
69 }

References aud.Queue< T >.front().

+ Here is the call graph for this function:

◆ testInvalid_frontDL()

void aud.test.QueueTest.testInvalid_frontDL ( )

Definition at line 76 of file QueueTest.java.

76 {
77 QueueDL<Integer> queue=new QueueDL<Integer>();
78 queue.front();
79 }

References aud.QueueDL< T >.front().

+ Here is the call graph for this function:

◆ testQueue()

void aud.test.QueueTest.testQueue ( )

Definition at line 15 of file QueueTest.java.

15 {
16 AbstractQueue<Integer> queue=new Queue<Integer>();
17 testQueue(queue);
18 }

References aud.test.QueueTest.testQueue().

Referenced by aud.test.QueueTest.testQueue(), and aud.test.QueueTest.testQueueDL().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ testQueueDL()

void aud.test.QueueTest.testQueueDL ( )

Definition at line 20 of file QueueTest.java.

20 {
21 AbstractQueue<Integer> queue=new QueueDL<Integer>();
22 testQueue(queue);
23 }

References aud.test.QueueTest.testQueue().

+ Here is the call graph for this function:

The documentation for this class was generated from the following file: