-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from fabioschiozer/fabioschiozer-patch-1
teste
- Loading branch information
Showing
9 changed files
with
1,128 additions
and
256 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import globals from "globals"; | ||
import pluginJs from "@eslint/js"; | ||
import tseslint from "typescript-eslint"; | ||
import pluginReactConfig from "eslint-plugin-react/configs/recommended.js"; | ||
|
||
|
||
export default [ | ||
{languageOptions: { globals: globals.browser }}, | ||
pluginJs.configs.recommended, | ||
...tseslint.configs.recommended, | ||
pluginReactConfig, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/** | ||
* This class contains unit tests for validating the behavior of Apex classes | ||
* and triggers. | ||
* | ||
* Unit tests are class methods that verify whether a particular piece | ||
* of code is working properly. Unit test methods take no arguments, | ||
* commit no data to the database, and are flagged with the testMethod | ||
* keyword in the method definition. | ||
* | ||
* All test methods in an org are executed whenever Apex code is deployed | ||
* to a production org to confirm correctness, ensure code | ||
* coverage, and prevent regressions. All Apex classes are | ||
* required to have at least 75% code coverage in order to be deployed | ||
* to a production org. In addition, all triggers must have some code coverage. | ||
* | ||
* The @isTest class annotation indicates this class only contains test | ||
* methods. Classes defined with the @isTest annotation do not count against | ||
* the org size limit for all Apex scripts. | ||
* | ||
* See the Apex Language Reference for more information about Testing and Code Coverage. | ||
*/ | ||
@isTest | ||
private class DummyClassTest { | ||
|
||
@isTest | ||
static void myUnitTest() { | ||
// TO DO: implement unit test | ||
|
||
String a = DummyClass.getStatic(); | ||
|
||
System.Assert(a == 'Analiza o código', 'Test failed !!!'); | ||
|
||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ApexClass xmlns="http://soap.sforce.com/2006/04/metadata"> | ||
<apiVersion>59.0</apiVersion> | ||
<status>Active</status> | ||
</ApexClass> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
7526ada,Fabio de Agostini Schiozer,2 hours ago,Update codeAnalyzerOnPR.yml | ||
d969a34,Fabio de Agostini Schiozer,3 hours ago,Update codeAnalyzerOnPR.yml | ||
849a41b,Fabio de Agostini Schiozer,3 hours ago,Update DummyClass.cls | ||
0733066,Fabio de Agostini Schiozer,3 hours ago,Create codeAnalyzerOnPR.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.