dreamhouse-sfdx/force-app/main/default/classes/LIFXControllerTest.cls

36 строки
845 B
OpenEdge ABL

@isTest
public class LIFXControllerTest {
static testMethod void testGetLights() {
Boolean success = true;
try {
LIFXController.getLights();
} catch (Exception e) {
success = false;
} finally {
System.assert(success);
}
}
static testMethod void testSetPower() {
Boolean success = true;
try {
LIFXController.setPower('1', true);
} catch (Exception e) {
success = false;
} finally {
System.assert(success);
}
}
static testMethod void testSetBrightness() {
Boolean success = true;
try {
LIFXController.setBrightness('1', 1);
} catch (Exception e) {
success = false;
} finally {
System.assert(success);
}
}
}