public function testCheckingIfASplitTransactionIsBalancedWillReturnFalseIfNotBalanced()
 {
     $amount = Factory::create('gbp', 0.1);
     $this->sut->addEntry(new Entry(new Nominal('2000'), $amount, AccountType::CR()));
     $this->assertFalse($this->sut->checkBalance());
 }