001package com.studentgui.test; 002 003/** 004 * Legacy smoke main retained for reference. Converted to a no-op deprecated 005 * holder to avoid duplicate Javadoc warnings now that an equivalent JUnit 006 * test exists under src/test/java. 007 * 008 * @deprecated Use {@code src/test/java/com/studentgui/test/BrailleSmokeTest.java} 009 * (the JUnit 5 replacement) for automated smoke testing. 010 */ 011@Deprecated 012public final class BrailleSmokeTest { 013 // intentionally empty - preserved for historical reference 014 015 /** 016 * Private constructor to prevent instantiation of this utility holder. 017 * The real smoke test has been converted to a JUnit test under src/test. 018 */ 019 private BrailleSmokeTest() { 020 throw new AssertionError("Not instantiable"); 021 } 022}