forked from TheAlgorithms/Java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSnellLawTest.java
More file actions
41 lines (30 loc) · 1.13 KB
/
SnellLawTest.java
File metadata and controls
41 lines (30 loc) · 1.13 KB
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
38
39
40
41
package com.thealgorithms.physics;
import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertThrows;
import org.junit.jupiter.api.Test;
public class SnellLawTest {
@Test
public void testRefractedAngle() {
double n1 = 1.0; // air
double n2 = 1.5; // glass
double theta1 = Math.toRadians(30);
double theta2 = SnellLaw.refractedAngle(n1, n2, theta1);
double expected = Math.asin(n1 / n2 * Math.sin(theta1));
assertEquals(expected, theta2, 1e-12);
}
@Test
public void testTotalInternalReflection() {
double n1 = 1.5;
double n2 = 1.0;
double theta1 = Math.toRadians(60); // large angle
assertThrows(IllegalArgumentException.class, () -> SnellLaw.refractedAngle(n1, n2, theta1));
}
@Test
public void testNoTotalInternalReflectionAtLowAngles() {
double n1 = 1.5;
double n2 = 1.0;
double theta1 = Math.toRadians(10);
assertDoesNotThrow(() -> SnellLaw.refractedAngle(n1, n2, theta1));
}
}