last_date = "1872.1.1"

tests = {

	# The token is used as the name of the test in reports.
	brazil_fires_uraguay_war = {

		acceptable_fail_rate = 0.1
		
		# success is an and-trigger that, when true, reports a success to the
		# test log, and decrements the number of remaining runs left for the test.
		success = {
			URG={
				has_war_with = URC
			}
			BRA={
				has_completed_focus = BRA_direct_intervention
			}
		}
		
		fail = {
			date > "1869.1.1"
		}
		
		run_count = 1
		
		loggers = {
		}
	}
	# The token is used as the name of the test in reports.
	brazil_wins_uraguay_war = {

		acceptable_fail_rate = 0.1
		
		# success is an and-trigger that, when true, reports a success to the
		# test log, and decrements the number of remaining runs left for the test.
		success = {
			URC={
				exists = yes
				has_war = no
			}
		}
		
		fail = {
			date > "1869.1.1"
		}
		
		run_count = 1
		
		loggers = {
		}
	}

	# ... other tests
}