[Python]Pythonインストールと動作確認

Pythonインストールと動作確認

・インストール

Windowsの場合、以下のURLにて、インストーラをダウンロードします。

https://www.python.org/downloads/windows/

・ダウンロードしたインストーラをPCにインストールします。

 ※インストール時、注意事項として、以下のように箇所にチェックいれて、「Install Now」押下します。

・インストール後に、PCの中に「test.py」ファイル作成して、その中に、以下のコードを入力して、保存します。

print("Hello world!")

保存場所は、例えば、C:\Python\test.py

・Python Versionを確認します。

Windowsの場合、コマンドプロンプトを起動して、まずPythonを確認します。

C:\Users\p445-PC>python --version
Python 3.11.1

・作成した、test.pyを実行します。

test.pyが保存されているDirectoryに移動します。

C:\>cd Python

test.py実行します。

C:\Python>python test.py
Hello world!

[Salesforce]Apexテストクラスのエラー「TestMethod として定義されたメソッドは、getContent コールをサポートしていません。」対応

Apexテストクラスのエラー「TestMethod として定義されたメソッドは、getContent コールをサポートしていません。」対応

attachmentFile.Body = Test.isRunningTest() ? Blob.valueof('testString') : pr.getContent();

[Salesforce]Apex StandardControllerテストクラス

Apex StandardControllerテストクラス

@isTest
private class Test_testController {

    static testmethod void test1() {
        
        Account acc = new Account(
            Name='テスト'
        );
        insert acc;

        Test.startTest();
        
        ApexPages.StandardController sc = new ApexPages.StandardController(acc);
        testController testSC = new testController(sc);

        PageReference pageRef = Page.testPage;
        pageRef.getParameters().put('id', String.valueOf(acc.Id));
        Test.setCurrentPage(pageRef);

        testSC.testMethod();

        Test.stopTest();
    }
}