This class provides several test case that test singleton construction.
+ *싱글턴 패턴 테스트 클래스.
* - *The first proves that multiple calls to the singleton getInstance object are the same when - * called in the SAME thread. The second proves that multiple calls to the singleton getInstance - * object are the same when called in the DIFFERENT thread.
+ *첫 번째 테스트는 동일한 스레드 내에서 getInstance 메서드가 항상 동일한 객체를 반환하는지 확인합니다.
+ *두 번째 테스트는 서로 다른 스레드에서 getInstance 메서드가 동일한 객체를 반환하는지 확인합니다.
* - * @param싱글턴 패턴 테스트 클래스.
+ * + *첫 번째 테스트는 동일한 스레드 내에서 getInstance 메서드가 항상 동일한 객체를 반환하는지 확인합니다.
+ *두 번째 테스트는 서로 다른 스레드에서 getInstance 메서드가 동일한 객체를 반환하는지 확인합니다.
+ * + * @param