|
| 1 | +package com.baeldung.staticvariables; |
| 2 | + |
| 3 | +import static org.assertj.core.api.Assertions.assertThat; |
| 4 | + |
| 5 | +import java.lang.reflect.Field; |
| 6 | + |
| 7 | +import org.junit.jupiter.api.Test; |
| 8 | + |
| 9 | +public class StaticVariableUnitTest { |
| 10 | + |
| 11 | + @Test |
| 12 | + public void initializeStaticVariable_checkAssignedValues() { |
| 13 | + |
| 14 | + try { |
| 15 | + Class<?> staticVariableDemo = this.getClass() |
| 16 | + .getClassLoader() |
| 17 | + .loadClass("com.baeldung.staticvariables.StaticVariableDemo"); |
| 18 | + |
| 19 | + Field field1 = staticVariableDemo.getField("i"); |
| 20 | + |
| 21 | + assertThat(field1.getInt(staticVariableDemo)).isEqualTo(0); |
| 22 | + |
| 23 | + Field field2 = staticVariableDemo.getField("j"); |
| 24 | + |
| 25 | + assertThat(field2.getInt(staticVariableDemo)).isEqualTo(20); |
| 26 | + |
| 27 | + } catch (ClassNotFoundException | NoSuchFieldException | SecurityException e) { |
| 28 | + e.printStackTrace(); |
| 29 | + } catch (IllegalArgumentException e) { |
| 30 | + e.printStackTrace(); |
| 31 | + } catch (IllegalAccessException e) { |
| 32 | + e.printStackTrace(); |
| 33 | + } |
| 34 | + |
| 35 | + } |
| 36 | + |
| 37 | + @Test |
| 38 | + public void initializeStaticVariable_checkStaticBlock() { |
| 39 | + |
| 40 | + try { |
| 41 | + Class<?> staticVariableDemo = this.getClass() |
| 42 | + .getClassLoader() |
| 43 | + .loadClass("com.baeldung.staticvariables.StaticVariableDemo"); |
| 44 | + |
| 45 | + Field field1 = staticVariableDemo.getField("z"); |
| 46 | + |
| 47 | + assertThat(field1.getInt(staticVariableDemo)).isEqualTo(30); |
| 48 | + |
| 49 | + Field field2 = staticVariableDemo.getField("a"); |
| 50 | + |
| 51 | + assertThat(field2.getInt(staticVariableDemo)).isEqualTo(50); |
| 52 | + |
| 53 | + } catch (ClassNotFoundException | NoSuchFieldException | SecurityException e) { |
| 54 | + e.printStackTrace(); |
| 55 | + } catch (IllegalArgumentException e) { |
| 56 | + e.printStackTrace(); |
| 57 | + } catch (IllegalAccessException e) { |
| 58 | + e.printStackTrace(); |
| 59 | + } |
| 60 | + |
| 61 | + } |
| 62 | + |
| 63 | + @Test |
| 64 | + public void initializeStaticVariable_checkFinalValues() { |
| 65 | + |
| 66 | + try { |
| 67 | + Class<?> staticVariableDemo = this.getClass() |
| 68 | + .getClassLoader() |
| 69 | + .loadClass("com.baeldung.staticvariables.StaticVariableDemo"); |
| 70 | + |
| 71 | + Field field1 = staticVariableDemo.getField("b"); |
| 72 | + |
| 73 | + assertThat(field1.getInt(staticVariableDemo)).isEqualTo(100); |
| 74 | + |
| 75 | + } catch (ClassNotFoundException | NoSuchFieldException | SecurityException e) { |
| 76 | + e.printStackTrace(); |
| 77 | + } catch (IllegalArgumentException e) { |
| 78 | + e.printStackTrace(); |
| 79 | + } catch (IllegalAccessException e) { |
| 80 | + e.printStackTrace(); |
| 81 | + } |
| 82 | + |
| 83 | + } |
| 84 | + |
| 85 | + @Test |
| 86 | + public void initializeStaticVariable_checkInnerClassValues() { |
| 87 | + |
| 88 | + try { |
| 89 | + Class<?> staticVariableDemo = this.getClass() |
| 90 | + .getClassLoader() |
| 91 | + .loadClass("com.baeldung.staticvariables.StaticVariableDemo"); |
| 92 | + |
| 93 | + Class<?>[] nestedClasses = staticVariableDemo.getClasses(); |
| 94 | + |
| 95 | + for (Class<?> nestedClass : nestedClasses) { |
| 96 | + if (nestedClass.getName() |
| 97 | + .equals("Nested")) { |
| 98 | + |
| 99 | + Field field1 = nestedClass.getField("nestedClassStaticVariable"); |
| 100 | + assertThat(field1.get(nestedClass)).isEqualTo("test"); |
| 101 | + } |
| 102 | + } |
| 103 | + |
| 104 | + } catch (ClassNotFoundException | NoSuchFieldException | SecurityException e) { |
| 105 | + e.printStackTrace(); |
| 106 | + } catch (IllegalArgumentException e) { |
| 107 | + e.printStackTrace(); |
| 108 | + } catch (IllegalAccessException e) { |
| 109 | + e.printStackTrace(); |
| 110 | + } |
| 111 | + |
| 112 | + } |
| 113 | +} |
0 commit comments