From 293422803392543c6eb170db87d08f7cb54aafe6 Mon Sep 17 00:00:00 2001 From: Roel Spilker Date: Fri, 31 Jan 2014 00:32:25 +0100 Subject: [configuration] Added first automated test for the configuration framework. For now, it fails. --- test/core/src/lombok/RunAllTests.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/core/src') diff --git a/test/core/src/lombok/RunAllTests.java b/test/core/src/lombok/RunAllTests.java index 0076e662..9f56b45b 100644 --- a/test/core/src/lombok/RunAllTests.java +++ b/test/core/src/lombok/RunAllTests.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2011 The Project Lombok Authors. + * Copyright (C) 2011-2014 The Project Lombok Authors. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -26,6 +26,6 @@ import org.junit.runners.Suite; import org.junit.runners.Suite.SuiteClasses; @RunWith(Suite.class) -@SuiteClasses({lombok.transform.RunTransformTests.class, lombok.bytecode.RunBytecodeTests.class}) +@SuiteClasses({lombok.transform.RunTransformTests.class, lombok.bytecode.RunBytecodeTests.class, lombok.core.configuration.RunConfigurationTests.class}) public class RunAllTests { } -- cgit