Example Test

Contents

My First

Specification

        Given testing some Data Setup 
	 When something Happens 
	 Then 
	 Assert That testing actual " actual " is Equal To " some output "

Test results:

TEST PASSED
        

Interesting Givens

foofar faff

actual

some output

My First Ranged

Specification

        Given testing some Data Setup 
	 givens " actual " = test actual 
	
	 When some Action test 
	 Then 
	 Assert That t givens " actual " has Length test expected

Test results:

TEST PASSED
        

Interesting Givens

actual
foofar faff

0

My First Ranged

Specification

        Given testing some Data Setup 
	 givens " actual " = test actual 
	
	 When some Action test 
	 Then 
	 Assert That t givens " actual " has Length test expected

Test results:

TEST FAILED
        
Expected: value with length 2
     but: <a>

Interesting Givens

actual a
foofar faff

a

2

Without Given

Specification

        When t something Happens 
	 Then 
	 Assert That testing actual " actual " is Equal To " some output "

Test results:

TEST PASSED
        

Interesting Givens

actual

some output