Best EvoMaster code snippet using org.evomaster.client.java.controller.internal.db.h2.H2SchemaExtractorTest.testEnumDecimalConstraint
Source:H2SchemaExtractorTest.java
...278 assertEquals(1, fooTable.tableCheckExpressions.size());279 assertEquals("(STATUS IN(1.0, 2.5))", fooTable.tableCheckExpressions.get(0).sqlCheckExpression);280 }281 @Test282 public void testEnumDecimalConstraint() throws Exception {283 String sqlCommand = "CREATE TABLE FOO (status DECIMAL);\n" +284 " ALTER TABLE FOO ADD CONSTRAINT CHK_STATUS CHECK (status in (1.0, 2.5));";285 SqlScriptRunner.execCommand(getConnection(), sqlCommand);286 DbSchemaDto schema = SchemaExtractor.extract(getConnection());287 assertEquals(1, schema.tables.size());288 TableDto fooTable = schema.tables.stream().filter(t -> t.name.equalsIgnoreCase("Foo")).findAny().get();289 assertEquals(1, fooTable.columns.size());290 assertTrue(fooTable.columns.stream().anyMatch(c -> c.name.equalsIgnoreCase("status")));291 ColumnDto statusColumn = fooTable.columns.stream().filter(c -> c.name.equalsIgnoreCase("status")).findFirst().get();292 assertEquals(1, fooTable.tableCheckExpressions.size());293 assertEquals("(STATUS IN(1.0, 2.5))", fooTable.tableCheckExpressions.get(0).sqlCheckExpression);294 }295 @Test296 public void testEnumCharConstraint() throws Exception {...
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!