課題のテスト ケースを設定する必要があります。数値に STAssertEquals を使用することは知っていますが、文字列を返す次のメソッドをテストする方法がわかりません。
-(NSString *) description
{
NSLog(@"\n \n Account information for %@ \n Balance is $%g dollars \n Number of transacrions are: %d \n\n\n\n", [self owner],[self balance], [self numberOfTransactions]);
STAssertsTrue を使用しますか?? もしそうなら、それを上記のコードにどのように適用しますか?