Changes between Version 25 and Version 26 of GoodCodeExamples
- Timestamp:
- 05/20/09 17:06:17 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GoodCodeExamples
v25 v26 111 111 package org.sophie2.base.commons.util.position; 112 112 113 114 115 113 import junit.framework.AssertionFailedError; 116 114 117 118 119 115 import org.junit.After; 120 121 116 import org.junit.Before; 122 123 117 import org.junit.Test; 124 125 118 import org.sophie2.core.testing.UnitTestBase; 126 119 127 128 129 120 /** 130 131 121 * Unit test for {@link ImmVector}. 132 133 122 * 134 135 123 * @author Pap 136 137 124 */ 138 139 125 public class ImmVectorTest extends UnitTestBase { 140 126 141 142 143 127 @Override 144 145 128 @Before 146 147 129 protected void setUp() throws Exception { 148 149 130 super.setUp(); 150 151 } 152 153 131 } 154 132 155 133 @Override 156 157 134 @After 158 159 135 protected void tearDown() throws Exception { 160 161 136 super.tearDown(); 162 163 } 164 165 166 167 /** 168 137 } 138 139 /** 169 140 * Tests getters of {@link ImmVector}. 170 171 */ 172 173 @Test 174 141 */ 142 @Test 175 143 public void testGetters() { 176 177 144 float x = 5.0f; 178 179 145 float y = 10.0f; 180 181 146 float t = 2.0f; 182 147 183 184 185 148 ImmVector v = new ImmVector(x, y, t); 186 149 187 188 189 150 assertEquals(x, v.getX()); 190 191 151 assertEquals(y, v.getY()); 192 193 152 assertEquals(t, v.getT()); 194 195 153 assertEquals(x / t, v.getPointX()); 196 197 154 assertEquals(y / t, v.getPointY()); 198 199 } 200 201 202 203 /** 204 155 } 156 157 /** 205 158 * Tests {@link ImmVector#add(ImmVector)}. 206 207 */ 208 209 @Test 210 159 */ 160 @Test 211 161 public void testAdd() { 212 213 162 ImmVector vec1 = new ImmVector(10.0f, 10.0f); 214 215 163 ImmVector vec2 = new ImmVector(5.0f, 20.0f); 216 164 217 218 219 165 ImmVector expected = new ImmVector(15.0f, 30.0f); 220 221 166 assertEquals(expected, vec1.add(vec2)); 222 167 223 224 225 } 226 227 228 229 /** 230 168 } 169 170 /** 231 171 * Tests {@link ImmVector#dotProduct(ImmVector)}. 232 233 */ 234 235 @Test 236 172 */ 173 @Test 237 174 public void testDotProduct() { 238 239 175 ImmVector vec1 = new ImmVector(1.0f, 1.0f, 0); 240 241 176 ImmVector vec2 = new ImmVector(-1.0f, 1.0f, 0); 242 177 243 244 245 178 float res = vec1.dotProduct(vec2); 246 247 179 float expected = 0f; 248 180 249 250 251 181 assertEquals(expected, res); 252 253 } 254 255 256 257 /** 258 182 } 183 184 /** 259 185 * Tests whether {@link ImmRect} is immutable. 260 261 */ 262 263 @Test 264 186 */ 187 @Test 265 188 public void testImmutable() { 266 267 189 ImmVector v1 = new ImmVector(10.0f, 5.0f, 2.0f); 268 269 190 ImmVector v2 = v1; 270 191 271 272 273 192 assertSame(v1, v2); 274 193 275 276 277 194 ImmVector result = v1.add(new ImmVector(0, 0, 1)); 278 279 195 assertNotSame(v1, result); 280 281 196 assertTrue(v1.equalsHomogeneously(result)); 282 283 197 assertSame(v1, v1); 284 285 } 286 287 288 289 /** 290 198 } 199 200 /** 291 201 * Tests {@link ImmVector#equalsHomogeneously}. 292 293 */ 294 295 @Test 296 202 */ 203 @Test 297 204 public void testEqualsHomogeneouslyVectors() { 298 299 205 ImmVector v1 = new ImmVector(10, 10, 0); 300 301 206 ImmVector v2 = new ImmVector(20, 20, 0); 302 207 303 304 305 208 assertTrue(v1.equalsHomogeneously(v2)); 306 209 307 308 309 210 ImmVector v3 = new ImmVector(10, 15, 0); 310 311 211 assertFalse(v1.equalsHomogeneously(v3)); 312 212 313 314 315 213 ImmVector v4 = new ImmVector(10, 10, 1); 316 317 214 ImmVector v5 = new ImmVector(20, 20, 2); 318 215 319 320 321 216 assertTrue(v4.equalsHomogeneously(v5)); 322 217 323 324 325 218 ImmVector v6 = new ImmVector(10, 10, 2); 326 327 219 assertFalse(v6.equalsHomogeneously(v4)); 328 329 } 330 331 332 333 /** 334 220 } 221 222 /** 335 223 * Tests {@link ImmVector#opposite()}. 336 337 */ 338 339 @Test 340 224 */ 225 @Test 341 226 public void testOpposite() { 342 343 227 ImmVector vec = new ImmVector(10.0f, 10.0f); 344 345 228 ImmVector res = vec.opposite(); 346 347 229 ImmVector expected = new ImmVector(-10.0f, -10.0f); 348 230 349 350 351 231 assertEquals(expected, res); 352 353 } 354 355 356 357 /** 358 232 } 233 234 /** 359 235 * Tests that multiplication between a {@link ImmVector} and a 360 361 236 * {@link ImmPoint} is undefined. 362 363 */ 364 365 @Test 366 237 */ 238 @Test 367 239 public void testDotProductVectorPoint() { 368 369 240 ImmVector point = new ImmVector(1.0f, 1.0f, 1.0f); 370 371 241 ImmVector vector = new ImmVector(1, 1, 0); 372 242 373 374 375 243 try { 376 377 244 point.dotProduct(vector); 378 379 245 fail(); 380 381 246 } catch (Throwable t) { 382 383 247 if (t instanceof AssertionFailedError) { 384 385 248 fail(); 386 387 249 } 388 389 } 390 391 } 392 393 394 395 /** 396 250 } 251 } 252 253 /** 397 254 * Tests that a vector must not have all zero coordinates. 398 399 */ 400 401 @Test 402 255 */ 256 @Test 403 257 public void testEqualsPointVector() { 404 258 405 406 407 259 ImmVector point = new ImmVector(1, 1, 1); 408 409 260 ImmVector vector = new ImmVector(1, 1, 0); 410 261 411 412 413 262 assertFalse(point.equals(vector)); 414 415 } 416 417 418 419 /** 420 263 } 264 265 /** 421 266 * Tests that a {@link ImmVector} cannot have all coordinates equal to zero. 422 423 */ 424 425 @Test 426 267 */ 268 @Test 427 269 public void testAllZeroes() { 428 429 270 try { 430 431 271 new ImmVector(0, 0, 0); 432 433 272 fail(); 434 435 273 } catch (Throwable t) { 436 437 274 if (t instanceof AssertionFailedError) { 438 439 275 fail(); 440 441 276 } 442 443 } 444 445 } 446 277 } 278 } 447 279 } 448 280 449 450 281 }}}