From f5ee13c5dab07b5ee4caffef0b96124bdcbad995 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Fri, 16 Oct 2015 01:48:04 +0300 Subject: [PATCH] Fix formatting in the Testing chapter --- src/asciidoc/testing.adoc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/asciidoc/testing.adoc b/src/asciidoc/testing.adoc index fe322f1c41..722235a185 100644 --- a/src/asciidoc/testing.adoc +++ b/src/asciidoc/testing.adoc @@ -1005,6 +1005,8 @@ Indicates that the annotated test is enabled for a specific testing environment. configured `ProfileValueSource` returns a matching `value` for the provided `name`, the test is enabled. Otherwise, the test will be disabled and effectively _ignored_. ++ + `@IfProfileValue` can be applied at the class level, the method level, or both. Class-level usage of `@IfProfileValue` takes precedence over method-level usage for any methods within that class or its subclasses. Specifically, a test is enabled if it is @@ -3238,7 +3240,7 @@ declarative SQL script execution with default transaction rollback semantics. ---- @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration - @Transactional(transactionManager = "txMgr") + **@Transactional(transactionManager = "txMgr")** **@Commit** public class FictitiousTransactionalTest {