Re: Strange JUnit behavior

2020-05-18 Thread Geertjan Wielenga
Are you going to try 12.0 Beta 4, please? I sent a mail to the users alias
about this yesterday — and waiting for the release to be announced and only
then verifying it is not how we work here: get Beta 4 and try it out and
fill out the survey, please.

Gj

On Tue, 19 May 2020 at 06:28, HRH  wrote:

> Thank you Greetjan, although this might be true in older versions of
> Netbeans, in Netbeans 11.3 the "Tools->Create/Update Test->Framework" only
> provides "JUnit" and "TestNG" options. The JUnit 4 is not present in the
> dropdown.
>
> Thanks again
>
> On Tuesday, May 19, 2020, 8:48:06 AM GMT+4:30, Geertjan Wielenga <
> geert...@apache.org> wrote:
>
>
> When you generate the test class, select JUnit 4 from the drop down menu,
> in Ant based projects to generate the correct code. In Maven based projects
> this is not needed and JUnit 5 was is supported.
>
> Gj
>
> On Tue, 19 May 2020 at 01:22, HRH  wrote:
>
>
> ** Looks like this org.junit.jupiter release is not quite compatible with
> SpringBootTest. **
>
> I use Netbeans 11.3 and despite the online tutorial vis-à-vis "Creating
> JUnit Test" from the NB IDE, the support for the org.junit.jupiter
> libraries are not completely functional yet. I hope this is addressed in
> the NB 12 beta version.
> On Tuesday, May 19, 2020, 3:31:54 AM GMT+4:30, HRH
>  wrote:
>
>
> I had a similar problem and this was the fix. Perhaps, it may work for you
> as well:
>
> Comment out the following import statments:
>
> import static org.junit.jupiter.api.Assertions.assertEquals;
> import static org.junit.jupiter.api.Assertions.fail;
> import org.junit.jupiter.api.Test;
>
> Add these instead:
>
> import org.junit.After;
> import org.junit.AfterClass;
> import org.junit.Before;
> import org.junit.BeforeClass;
> import org.junit.Test;
> import static org.junit.Assert.*;
>
> Ultimately, the annotations should be used as follow:
>
> @BeforeClass
> public static void setUpClass() {
> }
>
> @AfterClass
> public static void tearDownClass() {
> }
>
> @Before
> public void setUp() {
> }
>
> @After
> public void tearDown() {
> }
>
> Hope this helps.
>
>
>
> On Tuesday, May 19, 2020, 3:20:25 AM GMT+4:30, Greenberg, Gary
>  wrote:
>
>
> Sure, Here is the whole test file attached.
>
>
>
> Gary Greenberg*Error*
>
> Staff Software Engineer
>
> Data Product Development, BI-A
>
> E: ggree...@visa.com
>
> M: 650-269-7902
>
>
>
> [image: EmailSig-TaglineVersion]
>
>
>
> *From:* HRH 
> *Sent:* Monday, May 18, 2020 3:30 PM
> *To:* users@netbeans.apache.org; Greenberg, Gary
> 
> *Subject:* Re: Strange JUnit behavior
>
>
>
> Can you post the import statments used in your test file?
>
>
>
> On Tuesday, May 19, 2020, 2:54:47 AM GMT+4:30, Greenberg, Gary <
> ggree...@visa.com.invalid> wrote:
>
>
>
>
>
> I have created a Junit test for one of my classes using Netbeans
> Tools->Create/Update Tests menu.
>
> My class has just a single public method, therefore, test class contains
> only one @Test method.
>
> I did edited it to reflect my functionality, but when I run this test file
> I am getting
>
> Where these two erroneous tests are coming from, is a secret for me.
>
> If someone can give me a clue, how to find why I am getting these errors
> and how to get rid of them,
> I will appreciate it greatly.
>
> Thanks,
>
> Gary Greenberg
>
> Staff Software Engineer
>
> Data Product Development, BI-A
>
> E: ggree...@visa.com
>
> M: 650-269-7902
>
>
>
> [image: EmailSig-TaglineVersion]
>
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: users-h...@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>
> -
> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: users-h...@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>
> -
> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: users-h...@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>
>


Re: Strange JUnit behavior

2020-05-18 Thread HRH
 Thank you Greetjan, although this might be true in older versions of Netbeans, 
in Netbeans 11.3 the "Tools->Create/Update Test->Framework" only provides 
"JUnit" and "TestNG" options. The JUnit 4 is not present in the dropdown.
Thanks again

On Tuesday, May 19, 2020, 8:48:06 AM GMT+4:30, Geertjan Wielenga 
 wrote:  
 
 When you generate the test class, select JUnit 4 from the drop down menu, in 
Ant based projects to generate the correct code. In Maven based projects this 
is not needed and JUnit 5 was is supported.
Gj
On Tue, 19 May 2020 at 01:22, HRH  wrote:

 
** Looks like this org.junit.jupiter release is not quite compatible with 
SpringBootTest. **
I use Netbeans 11.3 and despite the online tutorial vis-à-vis "Creating JUnit 
Test" from the NB IDE, the support for the org.junit.jupiter libraries are not 
completely functional yet. I hope this is addressed in the NB 12 beta version.
On Tuesday, May 19, 2020, 3:31:54 AM GMT+4:30, HRH 
 wrote:  
 
  I had a similar problem and this was the fix. Perhaps, it may work for you as 
well:
Comment out the following import statments:
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.fail;
import org.junit.jupiter.api.Test;
Add these instead:
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import static org.junit.Assert.*;
Ultimately, the annotations should be used as follow:
    @BeforeClass
    public static void setUpClass() {
    }

    @AfterClass
    public static void tearDownClass() {
    }

    @Before
    public void setUp() {
    }

    @After
    public void tearDown() {
    }

Hope this helps.



On Tuesday, May 19, 2020, 3:20:25 AM GMT+4:30, Greenberg, Gary 
 wrote:  
 
 
Sure, Here is the whole test file attached.
 
  
 
Gary GreenbergError
 
Staff Software Engineer
 
Data Product Development, BI-A
 
E: ggree...@visa.com
 
M: 650-269-7902
 
  
 

 
  
 
From: HRH 
Sent: Monday, May 18, 2020 3:30 PM
To: users@netbeans.apache.org; Greenberg, Gary 
Subject: Re: Strange JUnit behavior
 
  
 
Can you post the import statments used in your test file?
 
  
 
On Tuesday, May 19, 2020, 2:54:47 AM GMT+4:30, Greenberg, Gary 
 wrote:
 
  
 
  
 
I have created a Junit test for one of my classes using Netbeans 
Tools->Create/Update Tests menu.
 
My class has just a single public method, therefore, test class contains only 
one @Test method.
 
I did edited it to reflect my functionality, but when I run this test file I am 
getting
 

 
Where these two erroneous tests are coming from, is a secret for me.
 
If someone can give me a clue, how to find why I am getting these errors and 
how to get rid of them,
I will appreciate it greatly.
 
Thanks,
 
Gary Greenberg
 
Staff Software Engineer
 
Data Product Development, BI-A
 
E:ggree...@visa.com
 
M: 650-269-7902
 
 
 

 
 
 
-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists  
-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists  
-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
  
-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Re: Strange JUnit behavior

2020-05-18 Thread HRH
 
** Looks like this org.junit.jupiter release is not quite compatible with 
SpringBootTest. **
I use Netbeans 11.3 and despite the online tutorial vis-à-vis "Creating JUnit 
Test" from the NB IDE, the support for the org.junit.jupiter libraries are not 
completely functional yet. I hope this is addressed in the NB 12 beta version.
On Tuesday, May 19, 2020, 3:31:54 AM GMT+4:30, HRH 
 wrote:  
 
  I had a similar problem and this was the fix. Perhaps, it may work for you as 
well:
Comment out the following import statments:
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.fail;
import org.junit.jupiter.api.Test;
Add these instead:
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import static org.junit.Assert.*;
Ultimately, the annotations should be used as follow:
    @BeforeClass
    public static void setUpClass() {
    }

    @AfterClass
    public static void tearDownClass() {
    }

    @Before
    public void setUp() {
    }

    @After
    public void tearDown() {
    }

Hope this helps.



On Tuesday, May 19, 2020, 3:20:25 AM GMT+4:30, Greenberg, Gary 
 wrote:  
 
 #yiv5064222178 -- filtered {}#yiv5064222178 filtered {}#yiv5064222178 filtered 
{}#yiv5064222178 filtered {}#yiv5064222178 filtered {}#yiv5064222178 
p.yiv5064222178MsoNormal, #yiv5064222178 li.yiv5064222178MsoNormal, 
#yiv5064222178 div.yiv5064222178MsoNormal 
{margin:0in;margin-bottom:.0001pt;font-size:12.0pt;font-family:New 
serif;}#yiv5064222178 a:link, #yiv5064222178 span.yiv5064222178MsoHyperlink 
{color:blue;text-decoration:underline;}#yiv5064222178 a:visited, #yiv5064222178 
span.yiv5064222178MsoHyperlinkFollowed 
{color:purple;text-decoration:underline;}#yiv5064222178 
p.yiv5064222178msonormal0, #yiv5064222178 li.yiv5064222178msonormal0, 
#yiv5064222178 div.yiv5064222178msonormal0 
{margin-right:0in;margin-left:0in;font-size:12.0pt;font-family:New 
serif;}#yiv5064222178 p.yiv5064222178msonormal, #yiv5064222178 
li.yiv5064222178msonormal, #yiv5064222178 div.yiv5064222178msonormal 
{margin-right:0in;margin-left:0in;font-size:12.0pt;font-family:New 
serif;}#yiv5064222178 p.yiv5064222178msochpdefault, #yiv5064222178 
li.yiv5064222178msochpdefault, #yiv5064222178 div.yiv5064222178msochpdefault 
{margin-right:0in;margin-left:0in;font-size:12.0pt;font-family:New 
serif;}#yiv5064222178 span.yiv5064222178msohyperlink {}#yiv5064222178 
span.yiv5064222178msohyperlinkfollowed {}#yiv5064222178 
span.yiv5064222178emailstyle17 {}#yiv5064222178 p.yiv5064222178msonormal1, 
#yiv5064222178 li.yiv5064222178msonormal1, #yiv5064222178 
div.yiv5064222178msonormal1 
{margin:0in;margin-bottom:.0001pt;font-size:11.0pt;font-family:sans-serif;}#yiv5064222178
 span.yiv5064222178msohyperlink1 
{color:#0563C1;text-decoration:underline;}#yiv5064222178 
span.yiv5064222178msohyperlinkfollowed1 
{color:#954F72;text-decoration:underline;}#yiv5064222178 
span.yiv5064222178emailstyle171 
{font-family:sans-serif;color:windowtext;}#yiv5064222178 
p.yiv5064222178msochpdefault1, #yiv5064222178 li.yiv5064222178msochpdefault1, 
#yiv5064222178 div.yiv5064222178msochpdefault1 
{margin-right:0in;margin-left:0in;font-size:12.0pt;font-family:sans-serif;}#yiv5064222178
 span.yiv5064222178EmailStyle28 
{font-family:sans-serif;color:#1F497D;}#yiv5064222178 
.yiv5064222178MsoChpDefault {font-size:10.0pt;}#yiv5064222178 filtered 
{}#yiv5064222178 div.yiv5064222178WordSection1 {}#yiv5064222178 
Sure, Here is the whole test file attached.
 
  
 
Gary GreenbergError
 
Staff Software Engineer
 
Data Product Development, BI-A
 
E: ggree...@visa.com
 
M: 650-269-7902
 
  
 

 
  
 
From: HRH 
Sent: Monday, May 18, 2020 3:30 PM
To: users@netbeans.apache.org; Greenberg, Gary 
Subject: Re: Strange JUnit behavior
 
  
 
Can you post the import statments used in your test file?
 
  
 
On Tuesday, May 19, 2020, 2:54:47 AM GMT+4:30, Greenberg, Gary 
 wrote:
 
  
 
  
 
I have created a Junit test for one of my classes using Netbeans 
Tools->Create/Update Tests menu.
 
My class has just a single public method, therefore, test class contains only 
one @Test method.
 
I did edited it to reflect my functionality, but when I run this test file I am 
getting
 

 
Where these two erroneous tests are coming from, is a secret for me.
 
If someone can give me a clue, how to find why I am getting these errors and 
how to get rid of them,
I will appreciate it greatly.
 
Thanks,
 
Gary Greenberg
 
Staff Software Engineer
 
Data Product Development, BI-A
 
E:ggree...@visa.com
 
M: 650-269-7902
 
 
 

 
 
 
-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists  

RE: Strange JUnit behavior

2020-05-18 Thread Greenberg, Gary
Thank you very much.
It does work. My test have succeeded.
Looks like this org.junit.jupiter release is not quite compatible with 
SpringBootTest.

Gary Greenberg
Staff Software Engineer
Data Product Development, BI-A
E: ggree...@visa.com
M: 650-269-7902

[EmailSig-TaglineVersion]

From: HRH 
Sent: Monday, May 18, 2020 4:02 PM
To: users@netbeans.apache.org; Greenberg, Gary 
Subject: Re: Strange JUnit behavior

I had a similar problem and this was the fix. Perhaps, it may work for you as 
well:

Comment out the following import statments:

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.fail;
import org.junit.jupiter.api.Test;

Add these instead:

import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import static org.junit.Assert.*;

Ultimately, the annotations should be used as follow:

@BeforeClass
public static void setUpClass() {
}

@AfterClass
public static void tearDownClass() {
}

@Before
public void setUp() {
}

@After
public void tearDown() {
}
Hope this helps.



On Tuesday, May 19, 2020, 3:20:25 AM GMT+4:30, Greenberg, Gary 
mailto:ggree...@visa.com.invalid>> wrote:



Sure, Here is the whole test file attached.



Gary GreenbergError

Staff Software Engineer

Data Product Development, BI-A

E: ggree...@visa.com

M: 650-269-7902



[EmailSig-TaglineVersion]



From: HRH mailto:hrh...@yahoo.com.INVALID>>
Sent: Monday, May 18, 2020 3:30 PM
To: users@netbeans.apache.org; Greenberg, 
Gary mailto:ggree...@visa.com.INVALID>>
Subject: Re: Strange JUnit behavior



Can you post the import statments used in your test file?



On Tuesday, May 19, 2020, 2:54:47 AM GMT+4:30, Greenberg, Gary 
mailto:ggree...@visa.com.invalid>> wrote:





I have created a Junit test for one of my classes using Netbeans 
Tools->Create/Update Tests menu.

My class has just a single public method, therefore, test class contains only 
one @Test method.

I did edited it to reflect my functionality, but when I run this test file I am 
getting

[cid:image002.png@01D62D2F.203EFCC0]

Where these two erroneous tests are coming from, is a secret for me.

If someone can give me a clue, how to find why I am getting these errors and 
how to get rid of them,
I will appreciate it greatly.

Thanks,

Gary Greenberg

Staff Software Engineer

Data Product Development, BI-A

E: ggree...@visa.com

M: 650-269-7902



[EmailSig-TaglineVersion]



-
To unsubscribe, e-mail: 
users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: 
users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


Re: Strange JUnit behavior

2020-05-18 Thread HRH
 I had a similar problem and this was the fix. Perhaps, it may work for you as 
well:
Comment out the following import statments:
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.fail;
import org.junit.jupiter.api.Test;
Add these instead:
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import static org.junit.Assert.*;
Ultimately, the annotations should be used as follow:
    @BeforeClass
    public static void setUpClass() {
    }

    @AfterClass
    public static void tearDownClass() {
    }

    @Before
    public void setUp() {
    }

    @After
    public void tearDown() {
    }

Hope this helps.



On Tuesday, May 19, 2020, 3:20:25 AM GMT+4:30, Greenberg, Gary 
 wrote:  
 
 #yiv7491570158 #yiv7491570158 -- _filtered {} _filtered {} _filtered {} 
_filtered {} _filtered {}#yiv7491570158 #yiv7491570158 
p.yiv7491570158MsoNormal, #yiv7491570158 li.yiv7491570158MsoNormal, 
#yiv7491570158 div.yiv7491570158MsoNormal 
{margin:0in;margin-bottom:.0001pt;font-size:12.0pt;font-family:New 
serif;}#yiv7491570158 a:link, #yiv7491570158 span.yiv7491570158MsoHyperlink 
{color:blue;text-decoration:underline;}#yiv7491570158 a:visited, #yiv7491570158 
span.yiv7491570158MsoHyperlinkFollowed 
{color:purple;text-decoration:underline;}#yiv7491570158 
p.yiv7491570158msonormal0, #yiv7491570158 li.yiv7491570158msonormal0, 
#yiv7491570158 div.yiv7491570158msonormal0 
{margin-right:0in;margin-left:0in;font-size:12.0pt;font-family:New 
serif;}#yiv7491570158 p.yiv7491570158msonormal, #yiv7491570158 
li.yiv7491570158msonormal, #yiv7491570158 div.yiv7491570158msonormal 
{margin-right:0in;margin-left:0in;font-size:12.0pt;font-family:New 
serif;}#yiv7491570158 p.yiv7491570158msochpdefault, #yiv7491570158 
li.yiv7491570158msochpdefault, #yiv7491570158 div.yiv7491570158msochpdefault 
{margin-right:0in;margin-left:0in;font-size:12.0pt;font-family:New 
serif;}#yiv7491570158 span.yiv7491570158msohyperlink {}#yiv7491570158 
span.yiv7491570158msohyperlinkfollowed {}#yiv7491570158 
span.yiv7491570158emailstyle17 {}#yiv7491570158 p.yiv7491570158msonormal1, 
#yiv7491570158 li.yiv7491570158msonormal1, #yiv7491570158 
div.yiv7491570158msonormal1 
{margin:0in;margin-bottom:.0001pt;font-size:11.0pt;font-family:sans-serif;}#yiv7491570158
 span.yiv7491570158msohyperlink1 
{color:#0563C1;text-decoration:underline;}#yiv7491570158 
span.yiv7491570158msohyperlinkfollowed1 
{color:#954F72;text-decoration:underline;}#yiv7491570158 
span.yiv7491570158emailstyle171 
{font-family:sans-serif;color:windowtext;}#yiv7491570158 
p.yiv7491570158msochpdefault1, #yiv7491570158 li.yiv7491570158msochpdefault1, 
#yiv7491570158 div.yiv7491570158msochpdefault1 
{margin-right:0in;margin-left:0in;font-size:12.0pt;font-family:sans-serif;}#yiv7491570158
 span.yiv7491570158EmailStyle28 
{font-family:sans-serif;color:#1F497D;}#yiv7491570158 
.yiv7491570158MsoChpDefault {font-size:10.0pt;} _filtered {}#yiv7491570158 
div.yiv7491570158WordSection1 {}#yiv7491570158 
Sure, Here is the whole test file attached.
 
  
 
Gary GreenbergError
 
Staff Software Engineer
 
Data Product Development, BI-A
 
E: ggree...@visa.com
 
M: 650-269-7902
 
  
 

 
  
 
From: HRH 
Sent: Monday, May 18, 2020 3:30 PM
To: users@netbeans.apache.org; Greenberg, Gary 
Subject: Re: Strange JUnit behavior
 
  
 
Can you post the import statments used in your test file?
 
  
 
On Tuesday, May 19, 2020, 2:54:47 AM GMT+4:30, Greenberg, Gary 
 wrote:
 
  
 
  
 
I have created a Junit test for one of my classes using Netbeans 
Tools->Create/Update Tests menu.
 
My class has just a single public method, therefore, test class contains only 
one @Test method.
 
I did edited it to reflect my functionality, but when I run this test file I am 
getting
 

 
Where these two erroneous tests are coming from, is a secret for me.
 
If someone can give me a clue, how to find why I am getting these errors and 
how to get rid of them,
I will appreciate it greatly.
 
Thanks,
 
Gary Greenberg
 
Staff Software Engineer
 
Data Product Development, BI-A
 
E:ggree...@visa.com
 
M: 650-269-7902
 
 
 

 
 
 
-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists  

MetricEvaluatorTest.java
Description: Binary data

-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Re: When will 12.0 be released?

2020-05-18 Thread Don Albertson

On 5/18/20 4:12 PM, Thomas Kellerer wrote:

HRH schrieb am 18.05.2020 um 13:14:

The mailing list is an anachronism.


No, it's not.

I for one, prefer doing this via email rather than some cumbersome web 
front end.


Mailing lists are also working extremely well for the Postgres project.

Thomas


Moi aussi.  I still miss DOS but at least the Linux command line is a 
suitable replacement.


dga



-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



--
"Trolls were large monsters of limited intellect. They were strong and vicious, but 
could not endure sunlight." -- J.R.R.Tolkien


-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



RE: Strange JUnit behavior

2020-05-18 Thread Greenberg, Gary
Sure, Here is the whole test file attached.

Gary GreenbergError
Staff Software Engineer
Data Product Development, BI-A
E: ggree...@visa.com
M: 650-269-7902

[EmailSig-TaglineVersion]

From: HRH 
Sent: Monday, May 18, 2020 3:30 PM
To: users@netbeans.apache.org; Greenberg, Gary 
Subject: Re: Strange JUnit behavior

Can you post the import statments used in your test file?

On Tuesday, May 19, 2020, 2:54:47 AM GMT+4:30, Greenberg, Gary 
mailto:ggree...@visa.com.invalid>> wrote:



I have created a Junit test for one of my classes using Netbeans 
Tools->Create/Update Tests menu.

My class has just a single public method, therefore, test class contains only 
one @Test method.

I did edited it to reflect my functionality, but when I run this test file I am 
getting

[cid:image002.png@01D62D2B.82986F40]

Where these two erroneous tests are coming from, is a secret for me.

If someone can give me a clue, how to find why I am getting these errors and 
how to get rid of them,
I will appreciate it greatly.

Thanks,

Gary Greenberg

Staff Software Engineer

Data Product Development, BI-A

E: ggree...@visa.com

M: 650-269-7902



[EmailSig-TaglineVersion]




MetricEvaluatorTest.java
Description: MetricEvaluatorTest.java

-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Re: Strange JUnit behavior

2020-05-18 Thread HRH
 This is an empty post

On Tuesday, May 19, 2020, 3:13:09 AM GMT+4:30, Greenberg, Gary 
 wrote:  
 
 #yiv8617051816 #yiv8617051816 -- _filtered {} _filtered {} _filtered {} 
_filtered {} _filtered {}#yiv8617051816 #yiv8617051816 
p.yiv8617051816MsoNormal, #yiv8617051816 li.yiv8617051816MsoNormal, 
#yiv8617051816 div.yiv8617051816MsoNormal 
{margin:0in;margin-bottom:.0001pt;font-size:12.0pt;font-family:New 
serif;}#yiv8617051816 a:link, #yiv8617051816 span.yiv8617051816MsoHyperlink 
{color:blue;text-decoration:underline;}#yiv8617051816 a:visited, #yiv8617051816 
span.yiv8617051816MsoHyperlinkFollowed 
{color:purple;text-decoration:underline;}#yiv8617051816 
p.yiv8617051816msonormal0, #yiv8617051816 li.yiv8617051816msonormal0, 
#yiv8617051816 div.yiv8617051816msonormal0 
{margin-right:0in;margin-left:0in;font-size:12.0pt;font-family:New 
serif;}#yiv8617051816 p.yiv8617051816msonormal, #yiv8617051816 
li.yiv8617051816msonormal, #yiv8617051816 div.yiv8617051816msonormal 
{margin-right:0in;margin-left:0in;font-size:12.0pt;font-family:New 
serif;}#yiv8617051816 p.yiv8617051816msochpdefault, #yiv8617051816 
li.yiv8617051816msochpdefault, #yiv8617051816 div.yiv8617051816msochpdefault 
{margin-right:0in;margin-left:0in;font-size:12.0pt;font-family:New 
serif;}#yiv8617051816 span.yiv8617051816msohyperlink {}#yiv8617051816 
span.yiv8617051816msohyperlinkfollowed {}#yiv8617051816 
span.yiv8617051816emailstyle17 {}#yiv8617051816 p.yiv8617051816msonormal1, 
#yiv8617051816 li.yiv8617051816msonormal1, #yiv8617051816 
div.yiv8617051816msonormal1 
{margin:0in;margin-bottom:.0001pt;font-size:11.0pt;font-family:sans-serif;}#yiv8617051816
 span.yiv8617051816msohyperlink1 
{color:#0563C1;text-decoration:underline;}#yiv8617051816 
span.yiv8617051816msohyperlinkfollowed1 
{color:#954F72;text-decoration:underline;}#yiv8617051816 
span.yiv8617051816emailstyle171 
{font-family:sans-serif;color:windowtext;}#yiv8617051816 
p.yiv8617051816msochpdefault1, #yiv8617051816 li.yiv8617051816msochpdefault1, 
#yiv8617051816 div.yiv8617051816msochpdefault1 
{margin-right:0in;margin-left:0in;font-size:12.0pt;font-family:sans-serif;}#yiv8617051816
 span.yiv8617051816EmailStyle28 
{font-family:sans-serif;color:#1F497D;}#yiv8617051816 
.yiv8617051816MsoChpDefault {font-size:10.0pt;} _filtered {}#yiv8617051816 
div.yiv8617051816WordSection1 {}#yiv8617051816 
  
 
  
 
Gary Greenberg
 
Staff Software Engineer
 
Data Product Development, BI-A
 
E: ggree...@visa.com
 
M: 650-269-7902
 
  
 

 
  
 
From: HRH 
Sent: Monday, May 18, 2020 3:30 PM
To: users@netbeans.apache.org; Greenberg, Gary 
Subject: Re: Strange JUnit behavior
 
  
 
Can you post the import statments used in your test file?
 
  
 
On Tuesday, May 19, 2020, 2:54:47 AM GMT+4:30, Greenberg, Gary 
 wrote:
 
  
 
  
 
I have created a Junit test for one of my classes using Netbeans 
Tools->Create/Update Tests menu.
 
My class has just a single public method, therefore, test class contains only 
one @Test method.
 
I did edited it to reflect my functionality, but when I run this test file I am 
getting
 

 
Where these two erroneous tests are coming from, is a secret for me.
 
If someone can give me a clue, how to find why I am getting these errors and 
how to get rid of them,
I will appreciate it greatly.
 
Thanks,
 
Gary Greenberg
 
Staff Software Engineer
 
Data Product Development, BI-A
 
E:ggree...@visa.com
 
M: 650-269-7902
 
 
 

 
 
   
-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

RE: Strange JUnit behavior

2020-05-18 Thread Greenberg, Gary


Gary Greenberg
Staff Software Engineer
Data Product Development, BI-A
E: ggree...@visa.com
M: 650-269-7902

[EmailSig-TaglineVersion]

From: HRH 
Sent: Monday, May 18, 2020 3:30 PM
To: users@netbeans.apache.org; Greenberg, Gary 
Subject: Re: Strange JUnit behavior

Can you post the import statments used in your test file?

On Tuesday, May 19, 2020, 2:54:47 AM GMT+4:30, Greenberg, Gary 
mailto:ggree...@visa.com.invalid>> wrote:



I have created a Junit test for one of my classes using Netbeans 
Tools->Create/Update Tests menu.

My class has just a single public method, therefore, test class contains only 
one @Test method.

I did edited it to reflect my functionality, but when I run this test file I am 
getting

[cid:image002.png@01D62D2A.FC3E5C70]

Where these two erroneous tests are coming from, is a secret for me.

If someone can give me a clue, how to find why I am getting these errors and 
how to get rid of them,
I will appreciate it greatly.

Thanks,

Gary Greenberg

Staff Software Engineer

Data Product Development, BI-A

E: ggree...@visa.com

M: 650-269-7902



[EmailSig-TaglineVersion]




Re: Strange JUnit behavior

2020-05-18 Thread HRH
 Can you post the import statments used in your test file? 

On Tuesday, May 19, 2020, 2:54:47 AM GMT+4:30, Greenberg, Gary 
 wrote:  
 
  
I have created a Junit test for one of my classes using Netbeans 
Tools->Create/Update Tests menu.
 
My class has just a single public method, therefore, test class contains only 
one @Test method.
 
I did edited it to reflect my functionality, but when I run this test file I am 
getting
 

 
Where these two erroneous tests are coming from, is a secret for me.
 
If someone can give me a clue, how to find why I am getting these errors and 
how to get rid of them,
I will appreciate it greatly.
 
Thanks,
 
Gary Greenberg
 
Staff Software Engineer
 
Data Product Development, BI-A
 
E: ggree...@visa.com
 
M: 650-269-7902
 
  
 

 
  
   
-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Strange JUnit behavior

2020-05-18 Thread Greenberg, Gary
I have created a Junit test for one of my classes using Netbeans 
Tools->Create/Update Tests menu.
My class has just a single public method, therefore, test class contains only 
one @Test method.
I did edited it to reflect my functionality, but when I run this test file I am 
getting
[cid:image002.png@01D62D27.66B6D180]
Where these two erroneous tests are coming from, is a secret for me.
If someone can give me a clue, how to find why I am getting these errors and 
how to get rid of them,
I will appreciate it greatly.
Thanks,
Gary Greenberg
Staff Software Engineer
Data Product Development, BI-A
E: ggree...@visa.com
M: 650-269-7902

[EmailSig-TaglineVersion]



Re: When will 12.0 be released?

2020-05-18 Thread Thomas Kellerer

HRH schrieb am 18.05.2020 um 13:14:

The mailing list is an anachronism.


No, it's not.

I for one, prefer doing this via email rather than some cumbersome web front 
end.

Mailing lists are also working extremely well for the Postgres project.

Thomas


-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Re: When will 12.0 be released?

2020-05-18 Thread Emilian Bold
There is a web interface but I think in order to post you need an
Apache id: https://lists.apache.org/list.html?users@netbeans.apache.org

> The mailing list is an anachronism.

Probably by design. Just like the crocodile, mailing lists are since
the dawn of Internet and will outlive any other communication mode.

--emi

On Mon, May 18, 2020 at 2:14 PM HRH  wrote:
>
> ** I could share this on Reddit if you'd like. Not everyone is subscribed to 
> the mailing lists after all **
>
> I wish Apache would consider replacing the mailing list with a web-based 
> forum. The mailing list is an anachronism.
>
> On Monday, May 18, 2020, 11:32:07 AM GMT+4:30, Ty Young 
>  wrote:
>
>
>
> On 5/18/20 12:55 AM, Geertjan Wielenga wrote:
>
> Hi all,
>
> Apache NetBeans 12.0 will be released once many of you:
>
> 1. Download beta 4: http://bit.ly/download-12-0-beta-4
>
> 2. Try it out. Here is an overview of the newest features, though incomplete:
>
> https://cwiki.apache.org/confluence/display/NETBEANS/Apache+NetBeans+12.0
>
> 3. Fill in this very quick survey: bit.ly/12-0-community-acceptance-survey
>
> Thanks!
>
>
> I could share this on Reddit if you'd like. Not everyone is subscribed to the 
> mailing lists afterall.
>
>
>
>
> Gj

-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Re: Decompiler for java

2020-05-18 Thread Eric J. Schwarzenbach
It seems odd to mix the Java and Javscript items. I have no need for the 
Javascript items, another programmer may have no need for the Java 
items, yet another may no need for either and have an entirely different 
list.


I have a need for a java decompiler about once every 5 years, if that, 
for about 10 minutes.


This may be lack of imagination on my part, but the only code completion 
feature I miss, would the equivalent of "Assign Return Value to New 
Variable" for java for-each statements.



On 5/17/20 12:27 AM, Brain Rebooting wrote:
Still, Apache Netbeans requires some things to be usable as a true 
full stack IDE for java and JavaScript at least. They are:


1. Machine learning capabilities to code completion.
2. Autocompletion support for database or SQL language and NoSQL 
support like MongoDB.

3. A Decompiler for java.
4. React Native support.

at least these should be added into Apache Netbeans future releases to 
gather more real life developers.

Hope for the best.




On Sun, May 17, 2020 at 9:17 AM Brain Rebooting 
mailto:siumastroma...@gmail.com>> wrote:


Hi all,

Is there any decompiler for netbeans to see source code from class
file.

Samiul alom sium
Bangladesh



Re: When will 12.0 be released?

2020-05-18 Thread Glenn Holmer
On 5/18/20 6:14 AM, HRH wrote:
> I wish Apache would consider replacing the mailing list with a web-based
> forum. The mailing list is an anachronism. 

-65535

-- 
Glenn Holmer (Linux registered user #16682)
"After the vintage season came the aftermath -- and Cenbe."
<>
-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Re: Decompiler for java

2020-05-18 Thread Gheorghe TUDOSE
"Machine learning capabilities to code completion" - don't let yourself
misled by the other IDE's marketing machines :)
I'd say code completion is better in NB than Eclipse.
Code refactoring & other capabilities are better than in VS.
I for one would replace that list of yours with "better jpms support"
although the last time I tried it was in NB 9 I think, so it may have
improved in the meantime. Can't remember exactly what the issue was but
switching to Eclipse unstuck that project.
And I'd throw in something like Eclipse Che on such a wishlist.

dum., 17 mai 2020, 07:27 Brain Rebooting  a scris:

> Still, Apache Netbeans requires some things to be usable as a true full
> stack IDE for java and JavaScript at least. They are:
>
> 1. Machine learning capabilities to code completion.
> 2. Autocompletion support for database or SQL language and NoSQL support
> like MongoDB.
> 3. A Decompiler for java.
> 4. React Native support.
>
> at least these should be added into Apache Netbeans future releases to
> gather more real life developers.
> Hope for the best.
>
>
>
>
> On Sun, May 17, 2020 at 9:17 AM Brain Rebooting 
> wrote:
>
>> Hi all,
>>
>> Is there any decompiler for netbeans to see source code from class file.
>>
>> Samiul alom sium
>> Bangladesh
>>
>


Re: When will 12.0 be released?

2020-05-18 Thread Geertjan Wielenga
Don’t ask — just share this info everywhere, it’s already on Twitter and
Facebook, go ahead and use whatever other mechanism, Reddit, anything.

Gj

On Mon, 18 May 2020 at 13:14, HRH  wrote:

> ** I could share this on Reddit if you'd like. Not everyone is subscribed
> to the mailing lists after all **
>
> I wish Apache would consider replacing the mailing list with a web-based
> forum. The mailing list is an anachronism.
>
> On Monday, May 18, 2020, 11:32:07 AM GMT+4:30, Ty Young <
> youngty1...@gmail.com> wrote:
>
>
>
> On 5/18/20 12:55 AM, Geertjan Wielenga wrote:
>
> Hi all,
>
> Apache NetBeans 12.0 will be released once many of you:
>
> 1. Download beta 4: http://bit.ly/download-12-0-beta-4
>
> 2. Try it out. Here is an overview of the newest features, though
> incomplete:
>
> https://cwiki.apache.org/confluence/display/NETBEANS/Apache+NetBeans+12.0
>
> 3. Fill in this very quick survey: bit.ly/12-0-community-acceptance-survey
>
> Thanks!
>
>
> I could share this on Reddit if you'd like. Not everyone is subscribed to
> the mailing lists afterall.
>
>
>
> Gj
>
>


Re: When will 12.0 be released?

2020-05-18 Thread HRH
 ** I could share this on Reddit if you'd like. Not everyone is subscribed to 
the mailing lists after all **
I wish Apache would consider replacing the mailing list with a web-based forum. 
The mailing list is an anachronism.  

On Monday, May 18, 2020, 11:32:07 AM GMT+4:30, Ty Young 
 wrote:  
 
  

 
 On 5/18/20 12:55 AM, Geertjan Wielenga wrote:
  
 
 Hi all,
 
  Apache NetBeans 12.0 will be released once many of you: 
  1. Download beta 4: http://bit.ly/download-12-0-beta-4 
  2. Try it out. Here is an overview of the newest features, though incomplete: 
  https://cwiki.apache.org/confluence/display/NETBEANS/Apache+NetBeans+12.0
  
  3. Fill in this very quick survey: bit.ly/12-0-community-acceptance-survey 
  Thanks!   

 
 
I could share this on Reddit if you'd like. Not everyone is subscribed to the 
mailing lists afterall.

  

 
 
   
  Gj   
   

Re: When will 12.0 be released?

2020-05-18 Thread zeugme
Done.
I'm happy the Tomcat bug is corrected on NB 12 (I tested it).
For perf, no difference I was able to notice.
Beta 2 was not stable. Beta 4 is stable for me.

I don't know why some plugin are downloaded the first time. This just
didn't work on beta 3.
It had work perfectly using beta 4.
I'm on Mac 10.11.8, something tag as old now.

Feel free to ask for anything specific to test on beta 4 if I can help ...

On Mon, 18 May 2020 at 09:02, Ty Young  wrote:

>
> On 5/18/20 12:55 AM, Geertjan Wielenga wrote:
>
> Hi all,
>
> Apache NetBeans 12.0 will be released once many of you:
>
> 1. Download beta 4: http://bit.ly/download-12-0-beta-4
>
> 2. Try it out. Here is an overview of the newest features, though
> incomplete:
>
> https://cwiki.apache.org/confluence/display/NETBEANS/Apache+NetBeans+12.0
>
> 3. Fill in this very quick survey: bit.ly/12-0-community-acceptance-survey
>
> Thanks!
>
>
> I could share this on Reddit if you'd like. Not everyone is subscribed to
> the mailing lists afterall.
>
>
>
> Gj
>
>


Re: When will 12.0 be released?

2020-05-18 Thread Ty Young



On 5/18/20 4:13 AM, Neil C Smith wrote:

On Mon, 18 May 2020 at 09:59, Ty Young  wrote:

On 5/18/20 3:30 AM, Neil C Smith wrote:

On Mon, 18 May 2020 at 08:16, Ty Young  wrote:

BTW, where do you find the commit changes between Netbeans 12.0 Beta versions? 
I'm still getting a minor issue where I'm being prompted to use instanceof 
pattern matching when preview features aren't currently enabled in Maven. 
Attempting to select the alt+enter option does nothing.

Please tell me you're not on beta4 or are on JDK 14?!  I put in a PR
to fix that appearing with JDK < 14, although it probably isn't taking
preview feature status into account.

Hate to break it to you, but yes, both a true. Technically i'm using 15,
but that doesn't matter here.

Not breaking anything to me - that was what I expected.  I put in a
quick fix, mainly based on that hint, to stop some hints being enabled
on lower JDK than they should - eg. this showing here on JDK 11.



Bit of a screwup on my end: I was using Netbeans Beta 3 still... even 
though I deleted the old folder and unzipped the right archive.



Yeah, it doesn't showup at all for me on beta 4.


Sorry about that!





Maybe preview feature hints should also be disabled by default in 12.0?

I think it should be an option, personally. If a user enables it then
Netbeans will prompt to modify the config for you and you can use it.

Good feature, no?

Surely you'd want it to be project specific not global?  I haven't
looked if there's a way for hints to pick up on whether preview
features are enabled.  That's something for 12.1 I guess.



IDE global, yes.




Best wishes,

Neil


-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Re: When will 12.0 be released?

2020-05-18 Thread Neil C Smith
On Mon, 18 May 2020 at 09:59, Ty Young  wrote:
> On 5/18/20 3:30 AM, Neil C Smith wrote:
> > On Mon, 18 May 2020 at 08:16, Ty Young  wrote:
> >> BTW, where do you find the commit changes between Netbeans 12.0 Beta 
> >> versions? I'm still getting a minor issue where I'm being prompted to use 
> >> instanceof pattern matching when preview features aren't currently enabled 
> >> in Maven. Attempting to select the alt+enter option does nothing.
> > Please tell me you're not on beta4 or are on JDK 14?!  I put in a PR
> > to fix that appearing with JDK < 14, although it probably isn't taking
> > preview feature status into account.
>
> Hate to break it to you, but yes, both a true. Technically i'm using 15,
> but that doesn't matter here.

Not breaking anything to me - that was what I expected.  I put in a
quick fix, mainly based on that hint, to stop some hints being enabled
on lower JDK than they should - eg. this showing here on JDK 11.

> > Maybe preview feature hints should also be disabled by default in 12.0?
> I think it should be an option, personally. If a user enables it then
> Netbeans will prompt to modify the config for you and you can use it.
>
> Good feature, no?

Surely you'd want it to be project specific not global?  I haven't
looked if there's a way for hints to pick up on whether preview
features are enabled.  That's something for 12.1 I guess.

Best wishes,

Neil

-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Re: When will 12.0 be released?

2020-05-18 Thread Ty Young



On 5/18/20 3:30 AM, Neil C Smith wrote:

On Mon, 18 May 2020 at 08:16, Ty Young  wrote:

BTW, where do you find the commit changes between Netbeans 12.0 Beta versions? 
I'm still getting a minor issue where I'm being prompted to use instanceof 
pattern matching when preview features aren't currently enabled in Maven. 
Attempting to select the alt+enter option does nothing.

Please tell me you're not on beta4 or are on JDK 14?!  I put in a PR
to fix that appearing with JDK < 14, although it probably isn't taking
preview feature status into account.



Hate to break it to you, but yes, both a true. Technically i'm using 15, 
but that doesn't matter here.





Maybe preview feature hints should also be disabled by default in 12.0?



I think it should be an option, personally. If a user enables it then 
Netbeans will prompt to modify the config for you and you can use it.



Good feature, no?




Best wishes,

Neil

-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Re: When will 12.0 be released?

2020-05-18 Thread Neil C Smith
On Mon, 18 May 2020 at 08:16, Ty Young  wrote:
> BTW, where do you find the commit changes between Netbeans 12.0 Beta 
> versions? I'm still getting a minor issue where I'm being prompted to use 
> instanceof pattern matching when preview features aren't currently enabled in 
> Maven. Attempting to select the alt+enter option does nothing.

Please tell me you're not on beta4 or are on JDK 14?!  I put in a PR
to fix that appearing with JDK < 14, although it probably isn't taking
preview feature status into account.

Maybe preview feature hints should also be disabled by default in 12.0?

Best wishes,

Neil

-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists



Re: When will 12.0 be released?

2020-05-18 Thread Ty Young


On 5/18/20 12:55 AM, Geertjan Wielenga wrote:

Hi all,

Apache NetBeans 12.0 will be released once many of you:

1. Download beta 4: http://bit.ly/download-12-0-beta-4

2. Try it out. Here is an overview of the newest features, though 
incomplete:


https://cwiki.apache.org/confluence/display/NETBEANS/Apache+NetBeans+12.0

3. Fill in this very quick survey: 
bit.ly/12-0-community-acceptance-survey 



Thanks!



BTW, where do you find the commit changes between Netbeans 12.0 Beta 
versions? I'm still getting a minor issue where I'm being prompted to 
use instanceof pattern matching when preview features aren't currently 
enabled in Maven. Attempting to select the alt+enter option does nothing.



Either Netbeans should edit the Maven config so that preview features 
are enabled and change the code, or it shouldn't display the option.





Gj


Re: When will 12.0 be released?

2020-05-18 Thread Ty Young


On 5/18/20 12:55 AM, Geertjan Wielenga wrote:

Hi all,

Apache NetBeans 12.0 will be released once many of you:

1. Download beta 4: http://bit.ly/download-12-0-beta-4

2. Try it out. Here is an overview of the newest features, though 
incomplete:


https://cwiki.apache.org/confluence/display/NETBEANS/Apache+NetBeans+12.0

3. Fill in this very quick survey: 
bit.ly/12-0-community-acceptance-survey 



Thanks!



I could share this on Reddit if you'd like. Not everyone is subscribed 
to the mailing lists afterall.





Gj