Changes between Version 25 and Version 26 of GoodCodeExamples


Ignore:
Timestamp:
05/20/09 17:06:17 (16 years ago)
Author:
meddle
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GoodCodeExamples

    v25 v26  
    111111package org.sophie2.base.commons.util.position; 
    112112 
    113  
    114  
    115113import junit.framework.AssertionFailedError; 
    116114 
    117  
    118  
    119115import org.junit.After; 
    120  
    121116import org.junit.Before; 
    122  
    123117import org.junit.Test; 
    124  
    125118import org.sophie2.core.testing.UnitTestBase; 
    126119 
    127  
    128  
    129120/** 
    130  
    131121 * Unit test for {@link ImmVector}. 
    132  
    133122 *  
    134  
    135123 * @author Pap 
    136  
    137124 */ 
    138  
    139125public class ImmVectorTest extends UnitTestBase { 
    140126 
    141  
    142  
    143127        @Override 
    144  
    145128        @Before 
    146  
    147129        protected void setUp() throws Exception { 
    148  
    149130                super.setUp(); 
    150  
    151         } 
    152  
    153  
     131        } 
    154132 
    155133        @Override 
    156  
    157134        @After 
    158  
    159135        protected void tearDown() throws Exception { 
    160  
    161136                super.tearDown(); 
    162  
    163         } 
    164  
    165  
    166  
    167         /** 
    168  
     137        } 
     138 
     139        /** 
    169140         * Tests getters of {@link ImmVector}. 
    170  
    171          */ 
    172  
    173         @Test 
    174  
     141         */ 
     142        @Test 
    175143        public void testGetters() { 
    176  
    177144                float x = 5.0f; 
    178  
    179145                float y = 10.0f; 
    180  
    181146                float t = 2.0f; 
    182147 
    183  
    184  
    185148                ImmVector v = new ImmVector(x, y, t); 
    186149 
    187  
    188  
    189150                assertEquals(x, v.getX()); 
    190  
    191151                assertEquals(y, v.getY()); 
    192  
    193152                assertEquals(t, v.getT()); 
    194  
    195153                assertEquals(x / t, v.getPointX()); 
    196  
    197154                assertEquals(y / t, v.getPointY()); 
    198  
    199         } 
    200  
    201  
    202  
    203         /** 
    204  
     155        } 
     156 
     157        /** 
    205158         * Tests {@link ImmVector#add(ImmVector)}. 
    206  
    207          */ 
    208  
    209         @Test 
    210  
     159         */ 
     160        @Test 
    211161        public void testAdd() { 
    212  
    213162                ImmVector vec1 = new ImmVector(10.0f, 10.0f); 
    214  
    215163                ImmVector vec2 = new ImmVector(5.0f, 20.0f); 
    216164 
    217  
    218  
    219165                ImmVector expected = new ImmVector(15.0f, 30.0f); 
    220  
    221166                assertEquals(expected, vec1.add(vec2)); 
    222167 
    223  
    224  
    225         } 
    226  
    227  
    228  
    229         /** 
    230  
     168        } 
     169 
     170        /** 
    231171         * Tests {@link ImmVector#dotProduct(ImmVector)}. 
    232  
    233          */ 
    234  
    235         @Test 
    236  
     172         */ 
     173        @Test 
    237174        public void testDotProduct() { 
    238  
    239175                ImmVector vec1 = new ImmVector(1.0f, 1.0f, 0); 
    240  
    241176                ImmVector vec2 = new ImmVector(-1.0f, 1.0f, 0); 
    242177 
    243  
    244  
    245178                float res = vec1.dotProduct(vec2); 
    246  
    247179                float expected = 0f; 
    248180 
    249  
    250  
    251181                assertEquals(expected, res); 
    252  
    253         } 
    254  
    255  
    256  
    257         /** 
    258  
     182        } 
     183 
     184        /** 
    259185         * Tests whether {@link ImmRect} is immutable. 
    260  
    261          */ 
    262  
    263         @Test 
    264  
     186         */ 
     187        @Test 
    265188        public void testImmutable() { 
    266  
    267189                ImmVector v1 = new ImmVector(10.0f, 5.0f, 2.0f); 
    268  
    269190                ImmVector v2 = v1; 
    270191 
    271  
    272  
    273192                assertSame(v1, v2); 
    274193 
    275  
    276  
    277194                ImmVector result = v1.add(new ImmVector(0, 0, 1)); 
    278  
    279195                assertNotSame(v1, result); 
    280  
    281196                assertTrue(v1.equalsHomogeneously(result)); 
    282  
    283197                assertSame(v1, v1); 
    284  
    285         } 
    286  
    287  
    288  
    289         /** 
    290  
     198        } 
     199 
     200        /** 
    291201         * Tests {@link ImmVector#equalsHomogeneously}. 
    292  
    293          */ 
    294  
    295         @Test 
    296  
     202         */ 
     203        @Test 
    297204        public void testEqualsHomogeneouslyVectors() { 
    298  
    299205                ImmVector v1 = new ImmVector(10, 10, 0); 
    300  
    301206                ImmVector v2 = new ImmVector(20, 20, 0); 
    302207 
    303  
    304  
    305208                assertTrue(v1.equalsHomogeneously(v2)); 
    306209 
    307  
    308  
    309210                ImmVector v3 = new ImmVector(10, 15, 0); 
    310  
    311211                assertFalse(v1.equalsHomogeneously(v3)); 
    312212 
    313  
    314  
    315213                ImmVector v4 = new ImmVector(10, 10, 1); 
    316  
    317214                ImmVector v5 = new ImmVector(20, 20, 2); 
    318215 
    319  
    320  
    321216                assertTrue(v4.equalsHomogeneously(v5)); 
    322217 
    323  
    324  
    325218                ImmVector v6 = new ImmVector(10, 10, 2); 
    326  
    327219                assertFalse(v6.equalsHomogeneously(v4)); 
    328  
    329         } 
    330  
    331  
    332  
    333         /** 
    334  
     220        } 
     221 
     222        /** 
    335223         * Tests {@link ImmVector#opposite()}. 
    336  
    337          */ 
    338  
    339         @Test 
    340  
     224         */ 
     225        @Test 
    341226        public void testOpposite() { 
    342  
    343227                ImmVector vec = new ImmVector(10.0f, 10.0f); 
    344  
    345228                ImmVector res = vec.opposite(); 
    346  
    347229                ImmVector expected = new ImmVector(-10.0f, -10.0f); 
    348230 
    349  
    350  
    351231                assertEquals(expected, res); 
    352  
    353         } 
    354  
    355  
    356  
    357         /** 
    358  
     232        } 
     233 
     234        /** 
    359235         * Tests that multiplication between a {@link ImmVector} and a 
    360  
    361236         * {@link ImmPoint} is undefined. 
    362  
    363          */ 
    364  
    365         @Test 
    366  
     237         */ 
     238        @Test 
    367239        public void testDotProductVectorPoint() { 
    368  
    369240                ImmVector point = new ImmVector(1.0f, 1.0f, 1.0f); 
    370  
    371241                ImmVector vector = new ImmVector(1, 1, 0); 
    372242 
    373  
    374  
    375243                try { 
    376  
    377244                        point.dotProduct(vector); 
    378  
    379245                        fail(); 
    380  
    381246                } catch (Throwable t) { 
    382  
    383247                        if (t instanceof AssertionFailedError) { 
    384  
    385248                                fail(); 
    386  
    387249                        } 
    388  
    389                 } 
    390  
    391         } 
    392  
    393  
    394  
    395         /** 
    396  
     250                } 
     251        } 
     252 
     253        /** 
    397254         * Tests that a vector must not have all zero coordinates. 
    398  
    399          */ 
    400  
    401         @Test 
    402  
     255         */ 
     256        @Test 
    403257        public void testEqualsPointVector() { 
    404258 
    405  
    406  
    407259                ImmVector point = new ImmVector(1, 1, 1); 
    408  
    409260                ImmVector vector = new ImmVector(1, 1, 0); 
    410261 
    411  
    412  
    413262                assertFalse(point.equals(vector)); 
    414  
    415         } 
    416  
    417  
    418  
    419         /** 
    420  
     263        } 
     264 
     265        /** 
    421266         * Tests that a {@link ImmVector} cannot have all coordinates equal to zero. 
    422  
    423          */ 
    424  
    425         @Test 
    426  
     267         */ 
     268        @Test 
    427269        public void testAllZeroes() { 
    428  
    429270                try { 
    430  
    431271                        new ImmVector(0, 0, 0); 
    432  
    433272                        fail(); 
    434  
    435273                } catch (Throwable t) { 
    436  
    437274                        if (t instanceof AssertionFailedError) { 
    438  
    439275                                fail(); 
    440  
    441276                        } 
    442  
    443                 } 
    444  
    445         } 
    446  
     277                } 
     278        } 
    447279} 
    448280 
    449  
    450281}}}