Chuong
10/07/2024, 12:19 AMEnum
@Serializable
enum class Certificate {
@SerialName("Certificate_A") A
}
that I've overridden in src/test . I did this by copying the one in src/main into src/test at the same package. I want to be able to access the one in src/main in a test. How?Chris Lee
10/07/2024, 12:51 AMmain in your tests.Chuong
10/07/2024, 12:52 AMEnum entry for the purposes of testing a failure case.Chris Lee
10/07/2024, 12:54 AMChuong
10/07/2024, 12:55 AMCertificate Enum entry that doesn't exist in src/main?Chuong
10/07/2024, 12:55 AMChris Lee
10/07/2024, 12:56 AM