source: branches/autoquest-core-tasktrees-alignment-test/src/test/java/de/ugoe/cs/autoquest/tasktrees/alignment/matrix/TriangleMatrixTest.java

Last change on this file was 1735, checked in by rkrimmel, 10 years ago

Code cleanup

File size: 319 bytes
Line 
1package de.ugoe.cs.autoquest.tasktrees.alignment.matrix;
2
3import static org.junit.Assert.*;
4
5import org.junit.Test;
6
7public class TriangleMatrixTest {
8
9        @Test
10        public void testSetGet() {
11                StaticTriangleMatrix tm = new StaticTriangleMatrix(3);
12                tm.initialize(0);
13                tm.set(0,1, 3);
14                assertTrue(tm.get(1, 0)==3);
15        }
16
17}
Note: See TracBrowser for help on using the repository browser.