私は頂点プログラミングの初心者です。サイト.comを利用しています。このコードを使用して新しい頂点クラスを作成しています -
@isTest
private class HelloWorldTestClass {
static testMethod void validateHelloWorld() {
Book__c b = new Book__c(Name='Behind the Cloud', Price__c=100);
System.debug('Price before inserting new book: ' + b.Price__c);
// Insert book
insert b;
// Retrieve the new book
b = [SELECT Price__c FROM Book__c WHERE Id =:b.Id];
System.debug('Price after trigger fired: ' + b.Price__c);
// Test that the trigger correctly updated the price
System.assertEquals(90, b.Price__c);
}
}
しかし、それは私にこのエラーを与えます -Error: Compile Error: sObject type 'Book_ c' is not supported. カスタム オブジェクトを使用する場合は、エンティティ名の後に必ず「_c」を追加してください。適切な名前については、WSDL または記述呼び出しを参照してください。13 行目 12 列目。
手伝ってください..