From 6ff6ac6cbf59dcfc025b300c3585769de12cc8bd Mon Sep 17 00:00:00 2001 From: Joel Costigliola Date: Wed, 13 Feb 2013 18:30:53 +0100 Subject: [PATCH] Rename Fest to FEST and reduce default font size --- index.html | 16 ++++++++-------- stylesheets/stylesheet.css | 1 + 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/index.html b/index.html index d2e64f0..c2aae01 100644 --- a/index.html +++ b/index.html @@ -11,14 +11,14 @@ - Fest-eclipse-plugin by joel-costigliola + FEST Eclipse plugin
-

Welcome to Fest eclipse plugin documentation !

+

Welcome to FEST eclipse plugin documentation !

This plugin will help you to get assertions for your own classes by generating them, it relies internally on fest-assertion-generator.

@@ -29,18 +29,18 @@

Welcome to Fest eclipse plugin documentation !

The project is hosted on GitHub and would not have been possible without Nicolas Demengel help, Thanks Nicolas !

-

Fest plugin installation

+

FEST plugin installation

Go to : Help > Install new software > Add...
Then set :
    -
  1. Name to : Fest (or whatever you want)
  2. +
  3. Name to : FEST (or whatever you want)
  4. location to : http://joel-costigliola.github.com/fest-eclipse-plugin/repository/
-

If everything is ok, you should be able to select and install Fest plugin

+

If everything is ok, you should be able to select and install FEST plugin

@@ -103,9 +103,9 @@

Generated assertions

PlayerAssert.assertThat(player).hasAge(28).hasName("Lebron James").hasTeams("Miami"); -

The generated assertion class is just a quick start for you to have custom assertions, you should complete it with richer assertions to suit your needs !
Note that the generated assertions code relies on Fest assert core 2.0M8, it should be on your classpath along with its dependencies (see this page to install Fest core assertions).

+

The generated assertion class is just a quick start for you to have custom assertions, you should complete it with richer assertions to suit your needs !
Note that the generated assertions code relies on FEST assert core 2.0M8, it should be on your classpath along with its dependencies (see this page to install FEST core assertions).

-

What you could do now, is to provide a single entry point for all assertions : Fest ones and yours. +

What you could do now, is to provide a single entry point for all assertions : FEST ones and yours. It is easy, inherit from Assertions and add assertThat methods for your own types, see the example below or this one taken from fest-examples project : @@ -128,7 +128,7 @@

Generated assertions

} -

Complete PlayerAssert class source

+Complete PlayerAssert class source :
 package example;
 
diff --git a/stylesheets/stylesheet.css b/stylesheets/stylesheet.css
index 5cb4dcb..988d723 100644
--- a/stylesheets/stylesheet.css
+++ b/stylesheets/stylesheet.css
@@ -80,6 +80,7 @@ header h2 {
 #main_content {
   width: 100%;
   -webkit-font-smoothing: antialiased;
+  font-size: 17px;
 }
 section img {
   max-width: 100%