我是顶点编程的新手。我正在使用 site.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);
}
}
但它给了我这个错误-错误:编译错误:不支持sObject类型'Book_c '。如果您尝试使用自定义对象,请务必在实体名称后附加“_c”。请参考您的 WSDL 或相应名称的描述调用。在第 13 行第 12 列。
帮帮我..